mirror of https://github.com/arendst/Tasmota.git
Add support for HDC2010 temperature/humidity sensor
Add support for HDC2010 temperature/humidity sensor by Luc Boudreau (#13633)
This commit is contained in:
parent
0035493a69
commit
ae275d984f
|
@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file.
|
|||
## [Unreleased] - Development
|
||||
|
||||
## [10.0.0.2]
|
||||
### Added
|
||||
- Support for HDC2010 temperature/humidity sensor by Luc Boudreau (#13633)
|
||||
|
||||
### Changed
|
||||
- ESP32 core library from v1.0.7.5 to v2.0.1
|
||||
|
||||
|
|
|
@ -105,6 +105,7 @@ The latter links can be used for OTA upgrades too like ``OtaUrl http://ota.tasmo
|
|||
- 1 second heartbeat GPIO
|
||||
- ESP32 Berry add module ``python_compat`` to be closer to Python syntax [#13428](https://github.com/arendst/Tasmota/issues/13428)
|
||||
- Command ``TcpConfig`` for TCPBridge protocol configuration [#13565](https://github.com/arendst/Tasmota/issues/13565)
|
||||
- Support for HDC2010 temperature/humidity sensor by Luc Boudreau [#13633](https://github.com/arendst/Tasmota/issues/13633)
|
||||
|
||||
### Breaking Changed
|
||||
|
||||
|
|
|
@ -772,10 +772,12 @@ void ResponseAppendFeatures(void)
|
|||
feature8 |= 0x00004000; // xsns_92_scd40.ino
|
||||
#endif
|
||||
#if defined(USE_I2C) && defined(USE_HM330X)
|
||||
feature8 |= 0x00008000;
|
||||
feature8 |= 0x00008000; // xsns_93_hm330x.ino
|
||||
#endif
|
||||
|
||||
// feature8 |= 0x00010000;
|
||||
#if defined(USE_I2C) && defined(USE_HDC2010)
|
||||
feature8 |= 0x00010000; // xsns_94_hdc2010.ino
|
||||
#endif
|
||||
// feature8 |= 0x00020000;
|
||||
// feature8 |= 0x00040000;
|
||||
// feature8 |= 0x00080000;
|
||||
|
|
|
@ -259,7 +259,7 @@ a_features = [[
|
|||
"USE_BM8563","USE_ENERGY_DUMMY","USE_AM2320","USE_T67XX",
|
||||
"USE_MCP2515","USE_TASMESH","USE_WIFI_RANGE_EXTENDER","USE_INFLUXDB",
|
||||
"USE_HRG15","USE_VINDRIKTNING","USE_SCD40","USE_HM330X",
|
||||
"","","","",
|
||||
"USE_HDC2010","","","",
|
||||
"","","","",
|
||||
"","","","",
|
||||
"","","",""
|
||||
|
@ -290,7 +290,7 @@ else:
|
|||
obj = json.load(fp)
|
||||
|
||||
def StartDecode():
|
||||
print ("\n*** decode-status.py v20211008 by Theo Arends and Jacek Ziolkowski ***")
|
||||
print ("\n*** decode-status.py v20211111 by Theo Arends and Jacek Ziolkowski ***")
|
||||
|
||||
# print("Decoding\n{}".format(obj))
|
||||
|
||||
|
|
Loading…
Reference in New Issue