MCPcopy Create free account
hub / github.com/cifertech/nRFBox / neopixelSetup

Function neopixelSetup

nRFBox_V2/neopixel.cpp:12–21  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

10extern Adafruit_NeoPixel pixels;
11
12void 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
23void neopixelLoop();
24

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected