diff --git a/BUILDS.md b/BUILDS.md index a611c9f77..5f4102b85 100644 --- a/BUILDS.md +++ b/BUILDS.md @@ -146,7 +146,7 @@ Note: `minimal` variant is not listed as it shouldn't be used outside of the [up | USE_PCF8574 | - | - / - | - | - | - | - | | USE_PMSA003I | - | - / - | - | - | - | - | | USE_LOX_O2 | - | - / x | - | x | - | - | -| USE_GDK101 | - | - / - | - | x | - | - | +| USE_GDK101 | - | - / - | - | - | - | - | | | | | | | | | | Feature or Sensor | l | t | k | s | i | d | Remarks | USE_HIH6 | - | - / x | - | x | - | - | diff --git a/CHANGELOG.md b/CHANGELOG.md index fc28c5524..4cda5b6e7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,7 @@ All notable changes to this project will be documented in this file. - Matter support for Light and Relays on ESP32 by Stephan Hadinger (#18320) - ESP32 WIP support for 16 shutters using `#define USE_SHUTTER_ESP32` in addition to `USE_SHUTTER` by Stefan Bode (#18295) - Berry `webserver.html_escape()` reusing the internal HTML escaping function +- Support for GDK101 gamma radiation sensor by Petr Novacek (#18390) ### Breaking Changed diff --git a/RELEASENOTES.md b/RELEASENOTES.md index 0d9d3383d..dc1b36e5c 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -117,6 +117,7 @@ The latter links can be used for OTA upgrades too like ``OtaUrl https://ota.tasm - Support for multiple PCF8574 as switch/button/relay if enabled with `#define USE_PCF8574` and `#define USE_PCF8574_MODE2` - Support for PMSA003I Air Quality Sensor by Jean-Pierre Deschamps [#18214](https://github.com/arendst/Tasmota/issues/18214) - Support for DingTian virtual switch/button/relay [#18223](https://github.com/arendst/Tasmota/issues/18223) +- Support for GDK101 gamma radiation sensor by Petr Novacek [#18390](https://github.com/arendst/Tasmota/issues/18390) - NTP time request from gateway [#17984](https://github.com/arendst/Tasmota/issues/17984) - Extended Tariff command for forced tariff [#18080](https://github.com/arendst/Tasmota/issues/18080) - Display TM1650 commands like TM1637 [#18109](https://github.com/arendst/Tasmota/issues/18109) @@ -132,7 +133,7 @@ The latter links can be used for OTA upgrades too like ``OtaUrl https://ota.tasm ### Changed - ESP32 Framework (Core) from v2.0.6 to v2.0.7 -- ESP32 LVGL library from v8.3.3 to v8.3.5 (no functional change) +- ESP32 LVGL library from v8.3.3 to v8.3.6 (no functional change) - LibTeleinfo from v1.1.3 to v1.1.5 [#18050](https://github.com/arendst/Tasmota/issues/18050) - Increase number of (virtual)relays and (virtual)buttons to 32 - ADC Range oversample from 2 to 32 [#17975](https://github.com/arendst/Tasmota/issues/17975) diff --git a/tasmota/include/tasmota_configurations.h b/tasmota/include/tasmota_configurations.h index 367c3b6a2..94acfddd9 100644 --- a/tasmota/include/tasmota_configurations.h +++ b/tasmota/include/tasmota_configurations.h @@ -163,7 +163,7 @@ //#define USE_HYT // [I2CDriver68] Enable HYTxxx temperature and humidity sensor (I2C address 0x28) (+0k5 code) //#define USE_LUXV30B // [I2CDriver70] Enable RFRobot SEN0390 LuxV30b ambient light sensor (I2C address 0x4A) (+0k5 code) //#define USE_PMSA003I // [I2cDriver78] Enable PMSA003I Air Quality Sensor (I2C address 0x12) (+1k8 code) -#define USE_GDK101 // [I2cDriver79] Enable GDK101 sensor (I2C addresses 0x18 - 0x1B) (+1k2 code) +//#define USE_GDK101 // [I2cDriver79] Enable GDK101 sensor (I2C addresses 0x18 - 0x1B) (+1k2 code) //#define USE_RTC_CHIPS // Enable RTC chip support and NTP server - Select only one // #define USE_DS3231 // [I2cDriver26] Enable DS3231 RTC (I2C address 0x68) (+1k2 code) diff --git a/tasmota/include/tasmota_configurations_ESP32.h b/tasmota/include/tasmota_configurations_ESP32.h index 6accee7fc..abdd66f7c 100644 --- a/tasmota/include/tasmota_configurations_ESP32.h +++ b/tasmota/include/tasmota_configurations_ESP32.h @@ -436,6 +436,7 @@ //#define USE_HYT // [I2CDriver68] Enable HYTxxx temperature and humidity sensor (I2C address 0x28) (+0k5 code) //#define USE_LUXV30B // [I2CDriver70] Enable RFRobot SEN0390 LuxV30b ambient light sensor (I2C address 0x4A) (+0k5 code) //#define USE_PMSA003I // [I2cDriver78] Enable PMSA003I Air Quality Sensor (I2C address 0x12) (+1k8 code) +//#define USE_GDK101 // [I2cDriver79] Enable GDK101 sensor (I2C addresses 0x18 - 0x1B) (+1k2 code) //#define USE_RTC_CHIPS // Enable RTC chip support and NTP server - Select only one // #define USE_DS3231 // [I2cDriver26] Enable DS3231 RTC (I2C address 0x68) (+1k2 code) @@ -665,6 +666,7 @@ //#define USE_HYT // [I2CDriver68] Enable HYTxxx temperature and humidity sensor (I2C address 0x28) (+0k5 code) //#define USE_LUXV30B // [I2CDriver70] Enable RFRobot SEN0390 LuxV30b ambient light sensor (I2C address 0x4A) (+0k5 code) //#define USE_PMSA003I // [I2cDriver78] Enable PMSA003I Air Quality Sensor (I2C address 0x12) (+1k8 code) +//#define USE_GDK101 // [I2cDriver79] Enable GDK101 sensor (I2C addresses 0x18 - 0x1B) (+1k2 code) //#define USE_RTC_CHIPS // Enable RTC chip support and NTP server - Select only one // #define USE_DS3231 // [I2cDriver26] Enable DS3231 RTC (I2C address 0x68) (+1k2 code) diff --git a/tools/decode-status.py b/tools/decode-status.py index dca999845..490e8e79a 100755 --- a/tools/decode-status.py +++ b/tools/decode-status.py @@ -294,7 +294,7 @@ a_features = [[ "USE_DINGTIAN_RELAY","USE_HMC5883L","USE_LD2410","USE_ME007", "USE_DISPLAY_TM1650","USE_PCA9632","USE_TUYAMCUBR","USE_SEN5X", "USE_BIOPDU","USE_MCP23XXX_DRV","USE_PMSA003I","USE_LOX_O2", - "","","","", + "USE_GDK101","","","", "","","","", "","","","" ]] @@ -324,7 +324,7 @@ else: obj = json.load(fp) def StartDecode(): - print ("\n*** decode-status.py v12.4.0.1 by Theo Arends and Jacek Ziolkowski ***") + print ("\n*** decode-status.py v12.4.0.5 by Theo Arends and Jacek Ziolkowski ***") # print("Decoding\n{}".format(obj))