From 67bd5daf451fc9af49503e8f2d1219e31b333513 Mon Sep 17 00:00:00 2001 From: Theo Arends <11044339+arendst@users.noreply.github.com> Date: Mon, 2 Nov 2020 11:58:23 +0100 Subject: [PATCH] Update changelog --- BUILDS.md | 1 + CHANGELOG.md | 4 +++- RELEASENOTES.md | 3 ++- tasmota/language/nl_NL.h | 4 ++-- tasmota/support_features.ino | 5 +++-- tools/decode-status.py | 4 ++-- 6 files changed, 13 insertions(+), 8 deletions(-) diff --git a/BUILDS.md b/BUILDS.md index 6242714e1..b6e267c2c 100644 --- a/BUILDS.md +++ b/BUILDS.md @@ -134,6 +134,7 @@ | USE_MCP9808 | - | - | - | - | - | - | - | | USE_HP303B | - | - | - | - | - | - | - | | USE_EZOCO2 | - | - | - | - | - | - | - | +| USE_EZODO | - | - | - | - | - | - | - | | USE_EZOEC | - | - | - | - | - | - | - | | USE_EZOFLO | - | - | - | - | - | - | - | | USE_EZOHUM | - | - | - | - | - | - | - | diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a89061bb..c6437acf4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,11 +9,13 @@ All notable changes to this project will be documented in this file. - Support for EZO O2 sensors by Christopher Tremblay (#9619) - Support for EZO PRS sensors by Christopher Tremblay (#9659) - Support for EZO FLO sensors by Christopher Tremblay (#9697) +- Support for EZO DO sensors by Christopher Tremblay (#9707) - Zigbee reduce battery drain (#9642) - Zigbee command ``ZbMap`` to describe Zigbee topology (#9651) - Zigbee command ``ZbOccupancy`` to configure the time-out for PIR - Command ``Gpios 255`` to show all possible GPIO configurations - Command ``SwitchText`` to change JSON switch names by barbudor (#9691) +- HM10 Beacon support and refactoring by Christian Baars (#9702) ### Changed - PlatformIO library structure redesigned for compilation speed by Jason2866 @@ -43,7 +45,7 @@ All notable changes to this project will be documented in this file. - Make button press rules override PWM Dimmer functions (#9589) - Support for fixed output Hi or Lo GPIO selection - ESP32 support for Wireless-Tag WT32-ETH01 (#9496) -- ESP32 MI32 Beacon support, RSSI at TELEPERIOD, refactoring (#9609) +- ESP32 MI32 Beacon support, RSSI at TELEPERIOD, refactoring by Christian Baars (#9609) ### Changed - Command ``Gpio17`` replaces command ``Adc`` diff --git a/RELEASENOTES.md b/RELEASENOTES.md index bd99d1ca7..04c0d69ae 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -81,7 +81,8 @@ The attached binaries can also be downloaded from http://ota.tasmota.com/tasmota - TLS in binary tasmota-zbbridge (#9620) - Zigbee reduce battery drain (#9642) - ESP32 support for Wireless-Tag WT32-ETH01 (#9496) -- ESP32 MI32 Beacon support, RSSI at TELEPERIOD, refactoring (#9609) +- ESP32 MI32 Beacon support, RSSI at TELEPERIOD, refactoring by Christian Baars (#9609) +- HM10 Beacon support and refactoring by Christian Baars (#9702) ### Breaking Changed - Redesigned ESP8266 GPIO internal representation in line with ESP32 changing ``Template`` layout too diff --git a/tasmota/language/nl_NL.h b/tasmota/language/nl_NL.h index 56b72ae60..96677cbcf 100644 --- a/tasmota/language/nl_NL.h +++ b/tasmota/language/nl_NL.h @@ -28,7 +28,7 @@ * Use online command StateText to translate ON, OFF, HOLD and TOGGLE. * Use online command Prefix to translate cmnd, stat and tele. * - * Updated until v8.0.0 + * Updated until v9.1.0 \*********************************************************************/ //#define LANGUAGE_MODULE_NAME // Enable to display "Module Generic" (ie Spanish), Disable to display "Generic Module" (ie English) @@ -84,7 +84,7 @@ #define D_DISABLED "Uitgeschakeld" #define D_DISTANCE "Afstand" #define D_DNS_SERVER "DNS Server" -#define D_DO "Disolved Oxygen" +#define D_DO "Opgelost zuurstof" #define D_DONE "Klaar" #define D_DST_TIME "ZT" #define D_EC "EC" diff --git a/tasmota/support_features.ino b/tasmota/support_features.ino index 4181a7f77..41e63799f 100644 --- a/tasmota/support_features.ino +++ b/tasmota/support_features.ino @@ -649,8 +649,9 @@ void ResponseAppendFeatures(void) #if defined(USE_I2C) && defined(USE_EZOFLO) feature7 |= 0x00000080; #endif - -// feature7 |= 0x00000100; +#if defined(USE_I2C) && defined(USE_EZODO) + feature7 |= 0x00000100; +#endif // feature7 |= 0x00000200; // feature7 |= 0x00000400; // feature7 |= 0x00000800; diff --git a/tools/decode-status.py b/tools/decode-status.py index 453832a27..719c03061 100755 --- a/tools/decode-status.py +++ b/tools/decode-status.py @@ -235,7 +235,7 @@ a_features = [[ ],[ "USE_EZOORP","USE_EZORTD","USE_EZOHUM","USE_EZOEC", "USE_EZOCO2","USE_EZOO2","USE_EZOPRS","USE_EZOFLO", - "","","","", + "USE_EZODO","","","", "","","","", "","","","", "","","","", @@ -268,7 +268,7 @@ else: obj = json.load(fp) def StartDecode(): - print ("\n*** decode-status.py v20201101 by Theo Arends and Jacek Ziolkowski ***") + print ("\n*** decode-status.py v20201102 by Theo Arends and Jacek Ziolkowski ***") # print("Decoding\n{}".format(obj))