| 54 | |
| 55 | |
| 56 | void setup() { |
| 57 | Serial.begin(115200); |
| 58 | auto screenmap = xyMap.toScreenMap(); |
| 59 | screenmap.setDiameter(.2); |
| 60 | FastLED.addLeds<NEOPIXEL, 2>(leds, NUM_LEDS).setScreenMap(screenmap); |
| 61 | |
| 62 | } |
| 63 | void loop() { |
| 64 | fl::clear(leds); |
| 65 | triggered = button.clicked(); |
nothing calls this directly
no test coverage detected