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

◆ operator=() [1/6]

CRGBPalette16 & CRGBPalette16::operator= ( const CHSV rhs[16])
inline

Create palette from array of CHSV colors.

Definition at line 1069 of file colorutils.h.

1070 {
1071 for( uint8_t i = 0; i < 16; ++i) {
1072 entries[i] = rhs[i]; // implicit HSV-to-RGB conversion
1073 }
1074 return *this;
1075 }
CRGB entries[16]
the color entries that make up the palette

References CRGBPalette16(), and entries.

+ Here is the call graph for this function: