| 44 | uint32_t lastSpawnTime = 0; |
| 45 | |
| 46 | void setup() { |
| 47 | fl::ScreenMap screenMap = fl::ScreenMap::Circle(NUM_LEDS, 5.0, 5.0); |
| 48 | FastLED.addLeds<WS2812B, DATA_PIN, GRB>(leds, NUM_LEDS).setScreenMap(screenMap); |
| 49 | FastLED.setBrightness(64); |
| 50 | } |
| 51 | |
| 52 | void loop() { |
| 53 | uint32_t now = fl::millis(); |
nothing calls this directly
no test coverage detected