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

◆ CRGBPalette16() [5/16]

CRGBPalette16::CRGBPalette16 ( const CHSVPalette16 & rhs)
inline

Create palette from CHSV palette.

Definition at line 1047 of file colorutils.h.

1048 {
1049 for( uint8_t i = 0; i < 16; ++i) {
1050 entries[i] = rhs.entries[i]; // implicit HSV-to-RGB conversion
1051 }
1052 }
CHSV entries[16]
the color entries that make up the palette
Definition colorutils.h:729
CRGB entries[16]
the color entries that make up the palette

References CHSVPalette16::entries, and entries.