Skip to content

Commit

Permalink
fix neopixel strip bug mariusmotea#47
Browse files Browse the repository at this point in the history
  • Loading branch information
Marius committed Sep 11, 2017
1 parent 84bfb60 commit 31f9307
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions Arduino/SK6812HueStrip/SK6812HueStrip.ino
Original file line number Diff line number Diff line change
Expand Up @@ -291,9 +291,10 @@ void setup() {
for (int j = 0; j < 200; j++) {
lightEngine();
}
WiFiManager wifiManager;
wifiManager.autoConnect("New Hue Light");
}
WiFiManager wifiManager;
wifiManager.autoConnect("New Hue Light");

if (! light_state[0]) {
infoLight(white);
while (WiFi.status() != WL_CONNECTED) {
Expand Down
5 changes: 3 additions & 2 deletions Arduino/WS2812BHueStrip/WS2812BHueStrip.ino
Original file line number Diff line number Diff line change
Expand Up @@ -290,9 +290,10 @@ void setup() {
for (int j = 0; j < 200; j++) {
lightEngine();
}
WiFiManager wifiManager;
wifiManager.autoConnect("New Hue Light");
}
WiFiManager wifiManager;
wifiManager.autoConnect("New Hue Light");

if (! light_state[0]) {
infoLight(white);
while (WiFi.status() != WL_CONNECTED) {
Expand Down

0 comments on commit 31f9307

Please sign in to comment.