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

◆ operator rgb24()

fl::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 375 of file crgb.h.

375 {
376 rgb24 ret;
377 ret.red = r;
378 ret.green = g;
379 ret.blue = b;
380 return ret;
381 }