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

362 {
363 rgb24 ret;
364 ret.red = r;
365 ret.green = g;
366 ret.blue = b;
367 return ret;
368 }