diff --git a/CHANGELOG.md b/CHANGELOG.md index ca79c9468..d5908f5a5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,8 +10,9 @@ All notable changes to this project will be documented in this file. - Extended Tariff command for forced tariff (#18080) - Berry support for Tensorflow Lite (TFL) by Christiaan Baars (#18119) - Zigbee send Tuya 'magic spell' to unlock devices when pairing (#18144) -- Berry add `webclient` `set_follow_redirects(bool)` -- Berry add `webclient` `collect_headers()` and `set_headers` +- Berry `webclient` `set_follow_redirects(bool)` +- Berry `webclient` `collect_headers()` and `set_headers` +- Display TM1650 commands like TM1637 (#18109) ### Breaking Changed - Shelly Pro 4PM using standard MCP23xxx driver and needs one time Auto-Configuration diff --git a/RELEASENOTES.md b/RELEASENOTES.md index fd9426c50..657adff89 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -118,6 +118,8 @@ The latter links can be used for OTA upgrades too like ``OtaUrl https://ota.tasm - Extended Tariff command for forced tariff [#18080](https://github.com/arendst/Tasmota/issues/18080) - Zigbee send Tuya 'magic spell' to unlock devices when pairing [#18144](https://github.com/arendst/Tasmota/issues/18144) - Berry support for Tensorflow Lite (TFL) by Christiaan Baars [#18119](https://github.com/arendst/Tasmota/issues/18119) +- Berry `webclient` features +- Display TM1650 commands like TM1637 [#18109](https://github.com/arendst/Tasmota/issues/18109) ### Breaking Changed - Shelly Pro 4PM using standard MCP23xxx driver and needs one time Auto-Configuration diff --git a/tasmota/tasmota_xsns_sensor/xsns_04_snfsc.ino b/tasmota/tasmota_xsns_sensor/xsns_04_snfsc.ino index 46aaf598b..c71a47f02 100644 --- a/tasmota/tasmota_xsns_sensor/xsns_04_snfsc.ino +++ b/tasmota/tasmota_xsns_sensor/xsns_04_snfsc.ino @@ -165,7 +165,7 @@ bool Xsns04(uint32_t function) case FUNC_INIT: SonoffScInit(); break; - case FUNC_MODULE_INIT: + case FUNC_PRE_INIT: SetSerial(19200, TS_SERIAL_8N1); break; }