diff --git a/RELEASENOTES.md b/RELEASENOTES.md index ceec8285b..da7f0cf31 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -78,7 +78,12 @@ The following binary downloads have been compiled with ESP8266/Arduino library c - Fix relation between RSSI and signal strength - Add command ``SetOption79 0/1`` to enable reset of counters at teleperiod time by Andre Thomas (#7355) - Add command ``SetOption82 0/1`` to limit the CT range for Alexa to 200..380 -- Add command ``SetOption84 1`` to send AWS IoT device shadow updates (alternative to retained) +- Add command ``SetOption84 0/1`` to send AWS IoT device shadow updates (alternative to retained) +- Add commands ``SetOption85 0/1`` and ``DevGroupShare`` supporting UDP Group command using ``GroupTopic`` without MQTT by Paul Diem (#7790) +- Add command ``SetOption86 0/1`` for PWM dimmer to turn brightness LED's off 5 seconds after last change +- Add command ``SetOption87 0/1`` for PWM dimmer to turn red LED on when powered off +- Add command ``SetOption88 0/1`` for PWM dimmer to let buttons control remote devices +- Add command ``SetOption89 0/1`` for Zigbee distinct MQTT topics per device for SENSOR, allowing retained messages (#7835) - Add command ``ShutterButton `` to control shutter(s) by to-scho (#7403) - Add commands ``SwitchMode 8`` ToggleMulti, ``SwitchMode 9`` FollowMulti and ``SwitchMode 10`` FollowMultiInverted (#7522) - Add commands ``SwitchMode 11`` PushHoldMulti and ``SwitchMode 12`` PushHoldInverted (#7603) @@ -109,7 +114,6 @@ The following binary downloads have been compiled with ESP8266/Arduino library c - Add support for Wemos Motor Shield V1 by Denis Sborets (#7764) - Add Zigbee enhanced commands decoding, added ``ZbPing`` - Add Zigbee features and improvements -- Add commands ``SetOption85 0/1`` and ``DevGroupShare`` supporting UDP Group command using ``GroupTopic`` without MQTT by Paul Diem (#7790) - Add support for Martin Jerry/acenx/Tessan/NTONPOWER SD0x PWM dimmer switches by Paul Diem (#7791) - Add support for Jarolift rollers by Keeloq algorithm - Add support for MaxBotix HRXL-MaxSonar ultrasonic range finders by Jon Little (#7814) diff --git a/tasmota/CHANGELOG.md b/tasmota/CHANGELOG.md index b1d84e701..90f2a711a 100644 --- a/tasmota/CHANGELOG.md +++ b/tasmota/CHANGELOG.md @@ -9,7 +9,7 @@ - Add Zigbee features and improvements and remove support for Zigbee commands starting with ``Zigbee...`` - Add support for MaxBotix HRXL-MaxSonar ultrasonic range finders by Jon Little (#7814) - Add support for Romanian language translations by Augustin Marti -- Add Zigbee use distinct MQTT topics per device for SENSOR, allowing retained messages (#7835) +- Add command ``SetOption89 0/1`` for Zigbee distinct MQTT topics per device for SENSOR, allowing retained messages (#7835) ### 8.1.0.9 20200220 @@ -20,6 +20,9 @@ - Add Zigbee enhanced commands decoding, added ``ZbPing`` - Add commands ``SetOption85 0/1`` and ``DevGroupShare`` supporting UDP Group command using ``GroupTopic`` without MQTT by Paul Diem (#7790) - Add support for Martin Jerry/acenx/Tessan/NTONPOWER SD0x PWM dimmer switches by Paul Diem (#7791) +- Add command ``SetOption86 0/1`` for PWM dimmer to turn brightness LED's off 5 seconds after last change +- Add command ``SetOption87 0/1`` for PWM dimmer to turn red LED on when powered off +- Add command ``SetOption88 0/1`` for PWM dimmer to let buttons control remote devices ### 8.1.0.8 20200212 @@ -52,7 +55,7 @@ - Change wifi connectivity stability (#7602) - Change IRremoteESP8266 library updated to v2.7.3 - Fix PWM flickering at low levels (#7415) -- Add ``SetOption84 1`` sends AWS IoT device shadow updates (alternative to retained) +- Add ``SetOption84 0/1`` sends AWS IoT device shadow updates (alternative to retained) - Add ``ZbBind`` (experimental) and bug fixes ### 8.1.0.4 20200116 diff --git a/tasmota/support_features.ino b/tasmota/support_features.ino index 4049d9cfe..961dd1091 100644 --- a/tasmota/support_features.ino +++ b/tasmota/support_features.ino @@ -537,7 +537,7 @@ void GetFeatures(void) feature6 |= 0x00000002; // xsns_64_hrxl.ino #endif #ifdef USE_SONOFF_D1 - feature6 |= 0x00000004; + feature6 |= 0x00000004; // xdrv_37_sonoff_d1.ino #endif // feature6 |= 0x00000008; diff --git a/tools/decode-status.py b/tools/decode-status.py index 6c5dd6a5b..fe80630cc 100755 --- a/tools/decode-status.py +++ b/tools/decode-status.py @@ -143,7 +143,7 @@ a_setoption = [[ "PWM Dimmer Turn brightness LED's off 5 seconds after last change", "PWM Dimmer Turn red LED on when powered off", "PWM Dimmer Buttons control remote devices", - "", + "Distinct MQTT topics per device for Zigbee", "","","","", "","","","", "","","","", @@ -239,7 +239,7 @@ else: obj = json.load(fp) def StartDecode(): - print ("\n*** decode-status.py v20200301 by Theo Arends and Jacek Ziolkowski ***") + print ("\n*** decode-status.py v20200305 by Theo Arends and Jacek Ziolkowski ***") # print("Decoding\n{}".format(obj))