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 367 of file crgb.h.

367 {
368 rgb24 ret;
369 ret.red = r;
370 ret.green = g;
371 ret.blue = b;
372 return ret;
373 }