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

◆ showInternal()

void CLEDController::showInternal ( const struct CRGB * data,
int nLeds,
uint8_t brightness )
inline

Will scale for color correction and temperature. Can accept LED data not attached to this controller.

Parameters
datathe LED data to write to the strip
nLedsthe number of LEDs in the data array
brightnessthe brightness of the LEDs
See also
show(const struct CRGB*, int, CRGB)

Definition at line 113 of file cled_controller.h.

113 {
114 if (m_enabled) {
115 show(data, nLeds,brightness);
116 }
117 }
UISlider brightness("Brightness", 255, 0, 255, 1)
virtual void show(const struct CRGB *data, int nLeds, uint8_t brightness)=0
Write the passed in RGB data out to the LEDs managed by this controller.

References brightness, m_enabled, and show().

+ Here is the call graph for this function: