diff --git a/CHANGELOG.md b/CHANGELOG.md index 3cad688b..902680bb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ### Development versions after 0.10.0 release +#### Build 2006250 + +- Fix Alexa not turning off white channel (fixes #1012) + #### Build 2006220 - Added Sunrise nightlight mode diff --git a/wled00/alexa.cpp b/wled00/alexa.cpp index c9f61ff2..05e46093 100644 --- a/wled00/alexa.cpp +++ b/wled00/alexa.cpp @@ -85,6 +85,7 @@ void onAlexaChange(EspalexaDevice* dev) col[0] = ((color >> 16) & 0xFF); col[1] = ((color >> 8) & 0xFF); col[2] = ( color & 0xFF); + col[3] = 0; } colorUpdated(NOTIFIER_CALL_MODE_ALEXA); } diff --git a/wled00/wled.h b/wled00/wled.h index dba45f7c..678effca 100644 --- a/wled00/wled.h +++ b/wled00/wled.h @@ -8,7 +8,7 @@ */ // version code in format yymmddb (b = daily build) -#define VERSION 2006220 +#define VERSION 2006250 // ESP8266-01 (blue) got too little storage space to work with all features of WLED. To use it, you must use ESP8266 Arduino Core v2.4.2 and the setting 512K(No SPIFFS).