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

◆ operator=()

Pixel & fl::Pixel::operator= ( const uint32_t colorcode)
inline

Definition at line 120 of file ___pixeltypes.h.

121 {
122 // rgb colorg;
123 red = (colorcode >> 16) & 0xFF;
124 green = (colorcode >> 8) & 0xFF;
125 blue = (colorcode >> 0) & 0xFF;
126 return *this;
127 }

References Pixel().

+ Here is the call graph for this function: