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

◆ CRGBPalette32() [5/18]

CRGBPalette32::CRGBPalette32 ( const CHSVPalette32 & rhs)
inline

Create palette from CHSV palette.

Definition at line 1485 of file colorutils.h.

1486 {
1487 for( uint8_t i = 0; i < 32; ++i) {
1488 entries[i] = rhs.entries[i]; // implicit HSV-to-RGB conversion
1489 }
1490 }
CHSV entries[32]
the color entries that make up the palette
CRGB entries[32]
the color entries that make up the palette

References CHSVPalette32::entries, and entries.