@copybrief show(const CRGB*, int, CRGB) Will scale for color correction and temperature. Can accept LED data not attached to this controller. @param data the LED data to write to the strip @param nLeds the number of LEDs in the data array @param brightness the brightness of the LEDs @see show(const CRGB*, int, CRGB)
| 166 | /// @param brightness the brightness of the LEDs |
| 167 | /// @see show(const CRGB*, int, CRGB) |
| 168 | void showInternal(const CRGB *data, int nLeds, fl::u8 brightness) FL_NOEXCEPT { |
| 169 | if (mEnabled) { |
| 170 | show(data, nLeds,brightness); |
| 171 | } |
| 172 | } |
| 173 | |
| 174 | /// @copybrief showColor(const CRGB&, int, CRGB) |
| 175 | /// |