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

◆ operator=() [1/7]

CRGBPalette256 & CRGBPalette256::operator= ( const CHSV rhs[256])
inline

Create palette from array of CHSV colors.

Definition at line 1813 of file colorutils.h.

1814 {
1815 for( int i = 0; i < 256; ++i) {
1816 entries[i] = rhs[i]; // implicit HSV-to-RGB conversion
1817 }
1818 return *this;
1819 }
CRGB entries[256]
the color entries that make up the palette

References CRGBPalette256(), and entries.

+ Here is the call graph for this function: