| 139 | } |
| 140 | |
| 141 | void loop() { |
| 142 | // Simple LED pattern to show something is happening |
| 143 | static uint8_t hue = 0; // okay static in header |
| 144 | fill_rainbow(leds, NUM_LEDS, hue++, 7); |
| 145 | FastLED.show(); |
| 146 | delay(50); |
| 147 | } |
nothing calls this directly
no test coverage detected