From a1e2c5415cf8a8a48dcec9d4178560e27a30168b Mon Sep 17 00:00:00 2001 From: Lorenz Nimmervoll <32486857+NimmLor@users.noreply.github.com> Date: Mon, 13 Jul 2020 20:44:48 +0200 Subject: [PATCH] fixed critical compile error --- esp8266-fastled-iot-webserver.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/esp8266-fastled-iot-webserver.ino b/esp8266-fastled-iot-webserver.ino index b27cffc..8daff33 100644 --- a/esp8266-fastled-iot-webserver.ino +++ b/esp8266-fastled-iot-webserver.ino @@ -877,7 +877,7 @@ void setup() { } }); - addRebootPage(); + addRebootPage(0); webServer.on("/alexa", HTTP_GET, []() { IPAddress ip = WiFi.localIP(); @@ -3632,7 +3632,7 @@ void AlexaStrobeEvent(EspalexaDevice* d) { static int lb; if ((lr != NULL && lr != d->getR() && lg != d->getG() && lb != d->getB()) || currentPatternIndex == patternCount - 1) { - setSolidColor(d->getR(), d->getG(), d->getB()); + setSolidColor(d->getR(), d->getG(), d->getB(), true); setPattern(12); } lr = d->getR(); -- GitLab