Write the data to the LEDs managed by this controller @param brightness the brightness of the LEDs @see show(const CRGB*, int, fl::u8)
| 188 | /// @param brightness the brightness of the LEDs |
| 189 | /// @see show(const CRGB*, int, fl::u8) |
| 190 | void showLedsInternal(fl::u8 brightness) FL_NOEXCEPT { |
| 191 | if (mEnabled) { |
| 192 | show(mLeds.data(), mLeds.size(), brightness); |
| 193 | } |
| 194 | } |
| 195 | |
| 196 | /// @copybrief showColor(const CRGB&, int, CRGB) |
| 197 | /// |