You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Cause there seems a timing problem in FastLed with ESP8266, which causes to always illuminate pixel 1 in random color you have to do some change on line 127
for (int i=0; i<NUM_LEDS; i++)
LEDs[i] = CRGB::Black;
to: FastLED.clear();
which is more elegant ;)
Also fix a little bug and change night() according to suggestions/ answers in #12
for correct console prints don't forget to specify correct baud rate on Serial.begin
Please convert this code for NodeMCU 1.0 (ESP-12E Module)
The text was updated successfully, but these errors were encountered: