FastLED 3.9.15
Loading...
Searching...
No Matches

◆ operator rgb24()

CRGB::operator rgb24 ( ) const
inline

Convert to an rgb24 object, used with the SmartMatrix library.

See also
https://github.com/pixelmatix/SmartMatrix

Definition at line 430 of file crgb.h.

430 {
431 rgb24 ret;
432 ret.red = r;
433 ret.green = g;
434 ret.blue = b;
435 return ret;
436 }