diff --git a/CHANGELOG.md b/CHANGELOG.md index 179921dd9..e48a377f9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,7 +13,7 @@ All notable changes to this project will be documented in this file. - Support for AS608 optical and R503 capacitive fingerprint sensor - Command ``SetOption115 1`` to enable ESP32 MiBle - Zigbee command ``ZbLeave`` to unpair a device -- Zigbee ``SetOption116 1`` to disable auto-query of light devices (avoids network storms with large groups) +- Command ``SetOption116 1`` to disable auto-query of zigbee light devices (avoids network storms with large groups) ### Changed - Core library from v2.7.4.5 to v2.7.4.7 diff --git a/RELEASENOTES.md b/RELEASENOTES.md index 9d87f9de8..443f3ecab 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -59,8 +59,10 @@ The attached binaries can also be downloaded from http://ota.tasmota.com/tasmota ## Changelog v9.1.0.1 ### Added - Command ``SetOption115 1`` to enable ESP32 MiBle +- Command ``SetOption116 1`` to disable auto-query of zigbee light devices (avoids network storms with large groups) - Commands ``TuyaRGB``, ``TuyaEnum`` and ``TuyaEnumList`` (#9769) - Zigbee command ``ZbInfo`` and prepare support for EEPROM +- Zigbee command ``ZbLeave`` to unpair a device - Zigbee support for Mi Door and Contact (#9759) - Zigbee alarm persistence (#9785) - Support for additional EZO sensors by Christopher Tremblay diff --git a/tasmota/settings.h b/tasmota/settings.h index 76e499281..118c60bec 100644 --- a/tasmota/settings.h +++ b/tasmota/settings.h @@ -139,9 +139,9 @@ typedef union { // Restricted by MISRA-C Rule 18.4 bu typedef union { // Restricted by MISRA-C Rule 18.4 but so useful... uint32_t data; // Allow bit manipulation using SetOption struct { // SetOption114 .. SetOption145 - uint32_t mqtt_switches : 1; // bit 0 (v9.0.0.3) - SetOption114 - Detach Switches from relays and enable MQTT action state for all the SwitchModes - uint32_t mi32_enable : 1; // bit 1 (v9.1.0.1) - SetOption115 - Enable ESP32 MI32 BLE - uint32_t zb_disable_autoquery : 1; // bit 2 (v9.1.0.1) - SetOption116 - Disable auto-query of lights and devices + uint32_t mqtt_switches : 1; // bit 0 (v9.0.0.3) - SetOption114 - Detach Switches from relays and enable MQTT action state for all the SwitchModes + uint32_t mi32_enable : 1; // bit 1 (v9.1.0.1) - SetOption115 - Enable ESP32 MI32 BLE + uint32_t zb_disable_autoquery : 1; // bit 2 (v9.1.0.1) - SetOption116 - Disable auto-query of zigbee lights and devices uint32_t spare03 : 1; // bit 3 uint32_t spare04 : 1; // bit 4 uint32_t spare05 : 1; // bit 5