| 15 | }); |
| 16 | |
| 17 | void initPanels() { |
| 18 | FastLED.addLeds<WS2812, 3, GRB>(leds, NUM_EL_LEDS) |
| 19 | .setScreenMap(screenMap); |
| 20 | } |
| 21 | |
| 22 | void setPanelHigh(float brightness) { |
| 23 | uint8_t v = uint8_t(brightness * 255); |
nothing calls this directly
no test coverage detected