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

◆ CRGBPalette256() [6/17]

CRGBPalette256::CRGBPalette256 ( const CHSV rhs[256])
inline

Create palette from array of CHSV colors.

Definition at line 1798 of file colorutils.h.

1799 {
1800 for( int i = 0; i < 256; ++i) {
1801 entries[i] = rhs[i]; // implicit HSV-to-RGB conversion
1802 }
1803 }
CRGB entries[256]
the color entries that make up the palette

References entries.