Update change logs

This commit is contained in:
Theo Arends
2026-02-16 10:40:59 +01:00
parent 032654819f
commit 2eba536fc8
4 changed files with 6 additions and 2 deletions

View File

@@ -6,6 +6,7 @@ All notable changes to this project will be documented in this file.
## [15.2.0.6]
### Added
- Support for Sensirion SEN66 indoor air quality sensor (#24386)
- Support for I2C FM24Cxx FRAM block read/write/format commands (#24457)
### Breaking Changed

View File

@@ -118,6 +118,7 @@ The latter links can be used for OTA upgrades too like ``OtaUrl https://ota.tasm
- Support for Adafruit I2C QT Rotary Encoder [#24270](https://github.com/arendst/Tasmota/issues/24270)
- Support for RX8025T RTC [#24445](https://github.com/arendst/Tasmota/issues/24445)
- Support for Sensirion SEN66 indoor air quality sensor [#24386](https://github.com/arendst/Tasmota/issues/24386)
- Support for I2C FM24Cxx FRAM block read/write/format commands [#24457](https://github.com/arendst/Tasmota/issues/24457)
- ESP32 support SPI bus2 for Ethernet and SDCard [#24433](https://github.com/arendst/Tasmota/issues/24433)
- Improv USB CDC connected devices
- Dingtian `SetOption81 1` to invert input and `SetOption133 1` to invert output [#24364](https://github.com/arendst/Tasmota/issues/24364)

View File

@@ -967,7 +967,9 @@ constexpr uint32_t feature[] = {
#if defined(USE_I2C) && defined(USE_SEN6X)
0x00200000 | // xsns_119_sen6x.ino
#endif
// 0x00400000 | //
#if defined(USE_I2C) && defined(USE_FM24CXX)
0x00400000 | // xdrv_93_fm24cxx.ino
#endif
// 0x00800000 | //
// 0x01000000 | //
// 0x02000000 | //

View File

@@ -313,7 +313,7 @@ a_features = [[
"USE_HX711_M5SCALES","USE_RX8010","USE_PCF85063","USE_ESP32_TWAI",
"USE_C8_CO2_5K","USE_WIZMOTE","USE_V9240","USE_TELNET",
"USE_XYZMODEM","USE_WIREGUARD","USE_AP33772S","USE_VID6608",
"USE_AGS02MA","USE_SEN6X","","",
"USE_AGS02MA","USE_SEN6X","USE_FM24CXX","",
"","","","",
"","","",""
]]