| 32 | UIGroup hsvControls("HSV Controls", hueSlider, saturationSlider, valueSlider, autoHue); |
| 33 | |
| 34 | void setup() { |
| 35 | //FastLED.addLeds<WS2812B, DATA_PIN, GRB>(leds, NUM_LEDS); |
| 36 | // fl::ScreenMap screenMap(NUM_LEDS); |
| 37 | |
| 38 | FastLED.addLeds<APA102HD, PIN_DATA, PIN_CLOCK, BGR>(leds, NUM_LEDS) |
| 39 | .setCorrection(TypicalLEDStrip); |
| 40 | } |
| 41 | |
| 42 | void loop() { |
| 43 |
nothing calls this directly
no test coverage detected