Fix Alexa not turning off white channel (fixes #1012)

This commit is contained in:
cschwinne 2020-06-26 23:09:19 +02:00
parent 2d4d7bf937
commit 5464cbc2ed
3 changed files with 6 additions and 1 deletions

View File

@ -2,6 +2,10 @@
### Development versions after 0.10.0 release ### Development versions after 0.10.0 release
#### Build 2006250
- Fix Alexa not turning off white channel (fixes #1012)
#### Build 2006220 #### Build 2006220
- Added Sunrise nightlight mode - Added Sunrise nightlight mode

View File

@ -85,6 +85,7 @@ void onAlexaChange(EspalexaDevice* dev)
col[0] = ((color >> 16) & 0xFF); col[0] = ((color >> 16) & 0xFF);
col[1] = ((color >> 8) & 0xFF); col[1] = ((color >> 8) & 0xFF);
col[2] = ( color & 0xFF); col[2] = ( color & 0xFF);
col[3] = 0;
} }
colorUpdated(NOTIFIER_CALL_MODE_ALEXA); colorUpdated(NOTIFIER_CALL_MODE_ALEXA);
} }

View File

@ -8,7 +8,7 @@
*/ */
// version code in format yymmddb (b = daily build) // 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). // 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).