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

◆ operator=() [1/8]

CRGBPalette32 & CRGBPalette32::operator= ( const CHSV rhs[32])
inline

Create palette from array of CHSV colors.

Definition at line 1507 of file colorutils.h.

1508 {
1509 for( uint8_t i = 0; i < 32; ++i) {
1510 entries[i] = rhs[i]; // implicit HSV-to-RGB conversion
1511 }
1512 return *this;
1513 }
CRGB entries[32]
the color entries that make up the palette

References CRGBPalette32(), and entries.

+ Here is the call graph for this function: