From 465ae023ab65d45a9878a9088a22ce843424c54e Mon Sep 17 00:00:00 2001 From: Theo Arends <11044339+arendst@users.noreply.github.com> Date: Thu, 29 Jun 2023 14:10:49 +0200 Subject: [PATCH] Update change logs --- BUILDS.md | 2 +- CHANGELOG.md | 8 ++++---- RELEASENOTES.md | 8 +++++++- tasmota/include/tasmota_configurations.h | 2 +- tasmota/include/tasmota_configurations_ESP32.h | 4 ++-- tasmota/my_user_config.h | 1 + 6 files changed, 16 insertions(+), 9 deletions(-) diff --git a/BUILDS.md b/BUILDS.md index f5767be54..d84374984 100644 --- a/BUILDS.md +++ b/BUILDS.md @@ -119,7 +119,7 @@ Note: `minimal` variant is not listed as it shouldn't be used outside of the [up | USE_MGS | - | - / x | - | x | - | - | | USE_SGP30 | - | - / x | - | x | - | - | | USE_SGP40 | - | - / x | - | x | - | - | -| USE_SGP4X | - | - / x | - | x | - | - | +| USE_SGP4X | - | - / x | - | - | - | - | | USE_SEN5X | - | - / x | - | x | - | - | | USE_SI1145 | - | - / - | - | - | - | - | | USE_LM75AD | - | - / x | - | x | - | - | diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d83db60c..33d9d99b0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,12 +6,12 @@ All notable changes to this project will be documented in this file. ## [13.0.0.1] ### Added - Command ``Delay -1`` to wait until next second (#18984) -- Matter add option to disable bridge mode -- Add support for SGP41 TVOC/NOx Sensor +- Matter add option to disable bridge mode (#18992) +- Support for SGP41 TVOC/NOx Sensor (#18880) ### Breaking Changed - Berry `bool( [] )` and `bool( {} )` now evaluate as `false` (#18986) -- Berry `import strict` now detects useless expr without side effects +- Berry `import strict` now detects useless expr without side effects (#18997) ### Changed - Matter support for temperature in Fahrenheit (`SetOption8 1`) (#18987) @@ -20,7 +20,7 @@ All notable changes to this project will be documented in this file. - Berry various fixes for Walrus Operator (#18982) ### Removed - +- Support for ESP32-C3 with chip rev below 3 (old development boards) ## [Released] diff --git a/RELEASENOTES.md b/RELEASENOTES.md index e3395e77e..68d7dc0ed 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -113,12 +113,18 @@ The latter links can be used for OTA upgrades too like ``OtaUrl https://ota.tasm ## Changelog v13.0.0.1 ### Added - Command ``Delay -1`` to wait until next second [#18984](https://github.com/arendst/Tasmota/issues/18984) +- Support for SGP41 TVOC/NOx Sensor [#18880](https://github.com/arendst/Tasmota/issues/18880) +- Matter option to disable bridge mode [#18992](https://github.com/arendst/Tasmota/issues/18992) ### Breaking Changed - Berry `bool( [] )` and `bool( {} )` now evaluate as `false` [#18986](https://github.com/arendst/Tasmota/issues/18986) +- Berry `import strict` now detects useless expression without side effects [#18997](https://github.com/arendst/Tasmota/issues/18997) ### Changed - Matter support for temperature in Fahrenheit (`SetOption8 1`) [#18987](https://github.com/arendst/Tasmota/issues/18987) ### Fixed -- Berry various fixes for Walrus Operator [#18982](https://github.com/arendst/Tasmota/issues/18982) +- Berry Walrus Operator [#18982](https://github.com/arendst/Tasmota/issues/18982) + +### Removed +- Support for ESP32-C3 with chip revision below 3 (old development boards) diff --git a/tasmota/include/tasmota_configurations.h b/tasmota/include/tasmota_configurations.h index b4fabb479..d88f8d536 100644 --- a/tasmota/include/tasmota_configurations.h +++ b/tasmota/include/tasmota_configurations.h @@ -99,7 +99,7 @@ #define USE_MGS // [I2cDriver17] Enable Xadow and Grove Mutichannel Gas sensor using library Multichannel_Gas_Sensor (+10k code) #define USE_SGP30 // [I2cDriver18] Enable SGP30 sensor (I2C address 0x58) (+1k1 code) #define USE_SGP40 // [I2cDriver69] Enable SGP40 sensor (I2C address 0x59) (+1k4 code) -#define USE_SGP4X // [I2cDriver69] Enable SGP40 sensor (I2C address 0x59) (+1k4 code) +//#define USE_SGP4X // [I2cDriver82] Enable SGP41 sensor (I2C address 0x59) (+7k2 code) #define USE_SEN5X // [I2cDriver76] Enable SEN5X sensor (I2C address 0x69) (+3k code) //#define USE_SI1145 // [I2cDriver19] Enable SI1145/46/47 sensor (I2C address 0x60) (+1k code) #define USE_LM75AD // [I2cDriver20] Enable LM75AD sensor (I2C addresses 0x48 - 0x4F) (+0k5 code) diff --git a/tasmota/include/tasmota_configurations_ESP32.h b/tasmota/include/tasmota_configurations_ESP32.h index 0b7289209..6b2840ae3 100644 --- a/tasmota/include/tasmota_configurations_ESP32.h +++ b/tasmota/include/tasmota_configurations_ESP32.h @@ -376,7 +376,7 @@ //#define USE_MGS // [I2cDriver17] Enable Xadow and Grove Mutichannel Gas sensor using library Multichannel_Gas_Sensor (+10k code) //#define USE_SGP30 // [I2cDriver18] Enable SGP30 sensor (I2C address 0x58) (+1k1 code) //#define USE_SGP40 // [I2cDriver69] Enable SGP40 sensor (I2C address 0x59) (+1k4 code) -//#define USE_SGP4X // [I2cDriver69] Enable SGP4X sensor (I2C address 0x59) (+1k4 code) +//#define USE_SGP4X // [I2cDriver82] Enable SGP41 sensor (I2C address 0x59) (+7k2 code) //#define USE_SEN5X // [I2cDriver76] Enable SEN5X sensor (I2C address 0x69) (+3k code) //#define USE_SI1145 // [I2cDriver19] Enable SI1145/46/47 sensor (I2C address 0x60) (+1k code) //#define USE_LM75AD // [I2cDriver20] Enable LM75AD sensor (I2C addresses 0x48 - 0x4F) (+0k5 code) @@ -610,7 +610,7 @@ #define USE_MGS // [I2cDriver17] Enable Xadow and Grove Mutichannel Gas sensor using library Multichannel_Gas_Sensor (+10k code) #define USE_SGP30 // [I2cDriver18] Enable SGP30 sensor (I2C address 0x58) (+1k1 code) #define USE_SGP40 // [I2cDriver69] Enable SGP40 sensor (I2C address 0x59) (+1k4 code) -#define USE_SGP4X // [I2cDriver69] Enable SGP4X sensor (I2C address 0x59) (+1k4 code) +#define USE_SGP4X // [I2cDriver82] Enable SGP41 sensor (I2C address 0x59) (+7k2 code) #define USE_SEN5X // [I2cDriver76] Enable SEN5X sensor (I2C address 0x69) (+3k code) //#define USE_SI1145 // [I2cDriver19] Enable SI1145/46/47 sensor (I2C address 0x60) (+1k code) #define USE_LM75AD // [I2cDriver20] Enable LM75AD sensor (I2C addresses 0x48 - 0x4F) (+0k5 code) diff --git a/tasmota/my_user_config.h b/tasmota/my_user_config.h index 9cc1f0659..495495bd8 100644 --- a/tasmota/my_user_config.h +++ b/tasmota/my_user_config.h @@ -601,6 +601,7 @@ #define MGS_SENSOR_ADDR 0x04 // Default Mutichannel Gas sensor i2c address // #define USE_SGP30 // [I2cDriver18] Enable SGP30 sensor (I2C address 0x58) (+1k1 code) // #define USE_SGP40 // [I2cDriver69] Enable SGP40 sensor (I2C address 0x59) (+1k4 code) +// #define USE_SGP4X // [I2cDriver82] Enable SGP41 sensor (I2C address 0x59) (+7k2 code) // #define USE_SEN5X // [I2cDriver76] Enable SEN5X sensor (I2C address 0x69) (+3k code) // #define USE_SI1145 // [I2cDriver19] Enable SI1145/46/47 sensor (I2C address 0x60) (+1k code) // #define USE_LM75AD // [I2cDriver20] Enable LM75AD sensor (I2C addresses 0x48 - 0x4F) (+0k5 code)