Add tested and known working Beta Arduino Core 2.5.0 for Tasmota. Unchanged Fork from Original https://github.com/esp8266/Arduino
New commits to Beta core 2.5.0 will only be added if known to be working with Tasmota
- add full backup/restore capability
- add Tasmota .dmp format to be able to upload previously save Tasmota files
- add help files decode-config.md
- add Tasmota *.dmp format for backup
- new args:
--restore-file, --extension, --no-extension,
--full-help, --verbose
- changed args:
--exit-on-error-only to --ignore-warnings
--output-file to --backup-file
--output-file-format to --backup-type
--hide-pw to --json-hide-pw
--unhide-pw to --json-unhide-pw
- removed (hidden) args:
--sort, --unsort, --raw-values, --no-raw-values
-raw-keys, -no-raw-keys
defaults are no raw keys/values and sort
Alexa uses Phillips Hue Emulation to control Tasmota.
With this fix, the webserver arguments are passed to Tasmota as keys instead of args solving the Alexa issue for ALL cores.
Besides, for core 2.6.0 is planned to deprecate the use of args in favor of keys.
This fix makes Alexa to works compiling Tasmota under core 2.3.0, 2.4.0, 2.4.1, 2.4.2, 2.5.0 (stage), 2.6.0 (planned)
Tested Ok.
Alexa uses Phillips Hue Emulation to control Tasmota.
In the Arduino Esp8266 Core v2.3.0 all works fine.
In the Arduino Esp8266 Core v2.4.0, 2.4.1 and 2.4.2, a modification in the core is needed in order to make phillips hue work.
In the Arduino Esp8266 Core v2.5.0 (actual Stage version), the webserver parsing was modified and this PR fix this modification.
The new parsing of the core works fine for a standard phillips hue messages, but for Alexa it splits the command in 2 args. The first arg is empty and the second contains the correct phillips hue commands.
When using KNX in cores > 2.3.0, the ESPAsyncUDP Library was used instead of the WIFIUDP Library. As now ESPAsyncUDP is no longer mantained and also it does not work in last version of the Arduino STAGE Core, now for all cores KNX will use the WIFIUDP Library.