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

◆ operator fl::u32()

CRGB::operator fl::u32 ( ) const
inlineexplicitconstexpr

Converts a CRGB to a 32-bit color having an alpha of 255.

Definition at line 413 of file crgb.h.

414 {
415 return fl::u32(0xff000000) |
416 (fl::u32{r} << 16) |
417 (fl::u32{g} << 8) |
418 fl::u32{b};
419 }