mirror of https://github.com/arendst/Tasmota.git
Add command ``SetOption111 1``
Add command ``SetOption111 1`` to enable frequency output for buzzer GPIO (#8994)
This commit is contained in:
parent
42ff13518b
commit
afd197d493
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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))
|
||||
|
||||
|
|
Loading…
Reference in New Issue