diff --git a/CHANGELOG.md b/CHANGELOG.md index 596ab906..2c8111ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ ### Builds after release 0.12.0 +#### Build 2106140 + +- Updated main logo +- Reduced flash usage by 0.8kB by using 8-bit instead of 32-bit PNGs for welcome and 404 pages +- Added a check to stop Alexa reporting an error if state set by macro differs from the expected state + #### Build 2106100 - Added support for multiple buttons with various types (PR #1977) diff --git a/images/wled_logo_akemi.png b/images/wled_logo_akemi.png index 4f52d370..87a2d485 100644 Binary files a/images/wled_logo_akemi.png and b/images/wled_logo_akemi.png differ diff --git a/images/wled_logo_clean.png b/images/wled_logo_clean.png deleted file mode 100644 index 26a0ebed..00000000 Binary files a/images/wled_logo_clean.png and /dev/null differ diff --git a/images/wled_logo.png b/images/wled_logo_old.png similarity index 100% rename from images/wled_logo.png rename to images/wled_logo_old.png diff --git a/wled00/alexa.cpp b/wled00/alexa.cpp index 4f406a3f..83e7c25f 100644 --- a/wled00/alexa.cpp +++ b/wled00/alexa.cpp @@ -46,7 +46,10 @@ void onAlexaChange(EspalexaDevice* dev) bri = briLast; colorUpdated(NOTIFIER_CALL_MODE_ALEXA); } - } else applyPreset(macroAlexaOn); + } else { + applyPreset(macroAlexaOn); + if (bri == 0) espalexaDevice->setValue(briLast); //stop Alexa from complaining if macroAlexaOn does not actually turn on + } } else if (m == EspalexaDeviceProperty::off) { if (!macroAlexaOff) @@ -57,7 +60,10 @@ void onAlexaChange(EspalexaDevice* dev) bri = 0; colorUpdated(NOTIFIER_CALL_MODE_ALEXA); } - } else applyPreset(macroAlexaOff); + } else { + applyPreset(macroAlexaOff); + if (bri != 0) espalexaDevice->setValue(0); //stop Alexa from complaining if macroAlexaOff does not actually turn off + } } else if (m == EspalexaDeviceProperty::bri) { bri = espalexaDevice->getValue(); diff --git a/wled00/data/404.htm b/wled00/data/404.htm index 1b7c95fc..87244a94 100644 --- a/wled00/data/404.htm +++ b/wled00/data/404.htm @@ -39,7 +39,7 @@
- +