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

◆ as_uint32_t()

fl::u32 CRGB::as_uint32_t ( ) const
inlineconstexprnoexcept

Definition at line 181 of file crgb.h.

181 {
182 return fl::u32(0xff000000) |
183 (fl::u32{r} << 16) |
184 (fl::u32{g} << 8) |
185 fl::u32{b};
186 }