| 10 | extern Adafruit_NeoPixel pixels; |
| 11 | |
| 12 | void neopixelSetup() { |
| 13 | EEPROM.begin(512); |
| 14 | neoPixelActive = EEPROM.read(0); |
| 15 | |
| 16 | if (neoPixelActive) { |
| 17 | pixels.begin(); |
| 18 | pixels.clear(); |
| 19 | //pixels.show(); |
| 20 | } |
| 21 | } |
| 22 | |
| 23 | void neopixelLoop(); |
| 24 |
nothing calls this directly
no outgoing calls
no test coverage detected