FastLED
3.9.15
Loading...
Searching...
No Matches
◆
operator uint32_t()
CRGB::operator uint32_t
(
)
const
inline
explicit
constexpr
Converts a
CRGB
to a 32-bit color having an alpha of 255.
Definition at line
350
of file
crgb.h
.
351
{
352
return
uint32_t(0xff000000) |
353
(uint32_t{r} << 16) |
354
(uint32_t{g} << 8) |
355
uint32_t{b};
356
}
CRGB
Generated on Thu May 29 2025 04:44:58 for FastLED by
1.13.2