diff --git a/RELEASENOTES.md b/RELEASENOTES.md index 9b3740986..1cfdd3275 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -60,7 +60,9 @@ The attached binaries can also be downloaded from http://ota.tasmota.com/tasmota - Fix energy total counters (#9263, #9266) - Fix crash in ``ZbRestore`` - Fix reset BMP sensors when executing command ``SaveData`` and define USE_DEEPSLEEP enabled (#9300) -- Add new shutter modes (#9244) +- Add command ``SetOption110 1`` to disable Zigbee auto-config when pairing new devices +- Add command ``SetOption111 1`` to enable frequency output for buzzer GPIO (#8994) - Add ``#define USE_MQTT_AWS_IOT_LIGHT`` for password based AWS IoT authentication +- Add new shutter modes (#9244) - Add Zigbee auto-config when pairing - Add support for MLX90640 IR array temperature sensor by Christian Baars diff --git a/tasmota/CHANGELOG.md b/tasmota/CHANGELOG.md index 5c0d36fd2..689b71748 100644 --- a/tasmota/CHANGELOG.md +++ b/tasmota/CHANGELOG.md @@ -7,8 +7,10 @@ - Fix energy total counters (#9263, #9266) - Fix crash in ``ZbRestore`` - Fix reset BMP sensors when executing command ``SaveData`` and define USE_DEEPSLEEP enabled (#9300) -- Add new shutter modes (#9244) +- Add command ``SetOption110 1`` to disable Zigbee auto-config when pairing new devices +- Add command ``SetOption111 1`` to enable frequency output for buzzer GPIO (#8994) - Add ``#define USE_MQTT_AWS_IOT_LIGHT`` for password based AWS IoT authentication +- Add new shutter modes (#9244) - Add Zigbee auto-config when pairing - Add support for MLX90640 IR array temperature sensor by Christian Baars diff --git a/tools/decode-status.py b/tools/decode-status.py index cd32a5402..3a664b28c 100755 --- a/tools/decode-status.py +++ b/tools/decode-status.py @@ -163,7 +163,9 @@ a_setoption = [[ "Select virtual White as (0) Warm or (1) Cold", "Enable Teleinfo telemetry into Tasmota Energy MQTT (0) or Teleinfo only (1)", "Force gen1 Alexa mode", - "","","","" + "Disable Zigbee auto-config when pairing new devices", + "Use frequency output for buzzer pin instead of on/off signal", + "","" ],[ "","","","", "","","","", @@ -265,7 +267,7 @@ else: obj = json.load(fp) def StartDecode(): - print ("\n*** decode-status.py v20200906 by Theo Arends and Jacek Ziolkowski ***") + print ("\n*** decode-status.py v20200915 by Theo Arends and Jacek Ziolkowski ***") # print("Decoding\n{}".format(obj))