Update changelog

This commit is contained in:
Theo Arends 2020-11-02 11:58:23 +01:00
parent a8481851ea
commit 67bd5daf45
6 changed files with 13 additions and 8 deletions

View File

@ -134,6 +134,7 @@
| USE_MCP9808 | - | - | - | - | - | - | - | | USE_MCP9808 | - | - | - | - | - | - | - |
| USE_HP303B | - | - | - | - | - | - | - | | USE_HP303B | - | - | - | - | - | - | - |
| USE_EZOCO2 | - | - | - | - | - | - | - | | USE_EZOCO2 | - | - | - | - | - | - | - |
| USE_EZODO | - | - | - | - | - | - | - |
| USE_EZOEC | - | - | - | - | - | - | - | | USE_EZOEC | - | - | - | - | - | - | - |
| USE_EZOFLO | - | - | - | - | - | - | - | | USE_EZOFLO | - | - | - | - | - | - | - |
| USE_EZOHUM | - | - | - | - | - | - | - | | USE_EZOHUM | - | - | - | - | - | - | - |

View File

@ -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 O2 sensors by Christopher Tremblay (#9619)
- Support for EZO PRS sensors by Christopher Tremblay (#9659) - Support for EZO PRS sensors by Christopher Tremblay (#9659)
- Support for EZO FLO sensors by Christopher Tremblay (#9697) - Support for EZO FLO sensors by Christopher Tremblay (#9697)
- Support for EZO DO sensors by Christopher Tremblay (#9707)
- Zigbee reduce battery drain (#9642) - Zigbee reduce battery drain (#9642)
- Zigbee command ``ZbMap`` to describe Zigbee topology (#9651) - Zigbee command ``ZbMap`` to describe Zigbee topology (#9651)
- Zigbee command ``ZbOccupancy`` to configure the time-out for PIR - Zigbee command ``ZbOccupancy`` to configure the time-out for PIR
- Command ``Gpios 255`` to show all possible GPIO configurations - Command ``Gpios 255`` to show all possible GPIO configurations
- Command ``SwitchText`` to change JSON switch names by barbudor (#9691) - Command ``SwitchText`` to change JSON switch names by barbudor (#9691)
- HM10 Beacon support and refactoring by Christian Baars (#9702)
### Changed ### Changed
- PlatformIO library structure redesigned for compilation speed by Jason2866 - 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) - Make button press rules override PWM Dimmer functions (#9589)
- Support for fixed output Hi or Lo GPIO selection - Support for fixed output Hi or Lo GPIO selection
- ESP32 support for Wireless-Tag WT32-ETH01 (#9496) - 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 ### Changed
- Command ``Gpio17`` replaces command ``Adc`` - Command ``Gpio17`` replaces command ``Adc``

View File

@ -81,7 +81,8 @@ The attached binaries can also be downloaded from http://ota.tasmota.com/tasmota
- TLS in binary tasmota-zbbridge (#9620) - TLS in binary tasmota-zbbridge (#9620)
- Zigbee reduce battery drain (#9642) - Zigbee reduce battery drain (#9642)
- ESP32 support for Wireless-Tag WT32-ETH01 (#9496) - 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 ### Breaking Changed
- Redesigned ESP8266 GPIO internal representation in line with ESP32 changing ``Template`` layout too - Redesigned ESP8266 GPIO internal representation in line with ESP32 changing ``Template`` layout too

View File

@ -28,7 +28,7 @@
* Use online command StateText to translate ON, OFF, HOLD and TOGGLE. * Use online command StateText to translate ON, OFF, HOLD and TOGGLE.
* Use online command Prefix to translate cmnd, stat and tele. * 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) //#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_DISABLED "Uitgeschakeld"
#define D_DISTANCE "Afstand" #define D_DISTANCE "Afstand"
#define D_DNS_SERVER "DNS Server" #define D_DNS_SERVER "DNS Server"
#define D_DO "Disolved Oxygen" #define D_DO "Opgelost zuurstof"
#define D_DONE "Klaar" #define D_DONE "Klaar"
#define D_DST_TIME "ZT" #define D_DST_TIME "ZT"
#define D_EC "EC" #define D_EC "EC"

View File

@ -649,8 +649,9 @@ void ResponseAppendFeatures(void)
#if defined(USE_I2C) && defined(USE_EZOFLO) #if defined(USE_I2C) && defined(USE_EZOFLO)
feature7 |= 0x00000080; feature7 |= 0x00000080;
#endif #endif
#if defined(USE_I2C) && defined(USE_EZODO)
// feature7 |= 0x00000100; feature7 |= 0x00000100;
#endif
// feature7 |= 0x00000200; // feature7 |= 0x00000200;
// feature7 |= 0x00000400; // feature7 |= 0x00000400;
// feature7 |= 0x00000800; // feature7 |= 0x00000800;

View File

@ -235,7 +235,7 @@ a_features = [[
],[ ],[
"USE_EZOORP","USE_EZORTD","USE_EZOHUM","USE_EZOEC", "USE_EZOORP","USE_EZORTD","USE_EZOHUM","USE_EZOEC",
"USE_EZOCO2","USE_EZOO2","USE_EZOPRS","USE_EZOFLO", "USE_EZOCO2","USE_EZOO2","USE_EZOPRS","USE_EZOFLO",
"","","","", "USE_EZODO","","","",
"","","","", "","","","",
"","","","", "","","","",
"","","","", "","","","",
@ -268,7 +268,7 @@ else:
obj = json.load(fp) obj = json.load(fp)
def StartDecode(): 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)) # print("Decoding\n{}".format(obj))