From 6a2789924187b1f8a300ce40f3b8b7065f34b5fc Mon Sep 17 00:00:00 2001 From: Theo Arends <11044339+arendst@users.noreply.github.com> Date: Tue, 20 May 2025 17:14:59 +0200 Subject: [PATCH] Update changelogs --- CHANGELOG.md | 1 + I2CDEVICES.md | 1 + RELEASENOTES.md | 1 + tasmota/tasmota_xdrv_driver/xdrv_01_9_webserver.ino | 4 ++-- 4 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b18ffc393..8d0f035cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,7 @@ All notable changes to this project will be documented in this file. ### Changed - ESP32 Platform from 2025.04.30 to 2025.05.40, Framework (Arduino Core) from v3.1.3.250411 to v3.2.0.250504 and IDF from v5.3.2.250403 to v5.4.1.250501 (#23397) - ESP32 Platform from 2025.05.40 to 2025.05.30, Framework (Arduino Core) from v3.2.0.250504 to v3.1.3.250504 and IDF from v5.4.1.250501 to v5.3.3.250501 (#23404) +- ESP8266 platform update from 2024.09.00 to 2025.05.00 (#23448) ### Fixed - Haspmota `haspmota.parse()` page parsing (#23403) diff --git a/I2CDEVICES.md b/I2CDEVICES.md index 616d3aa56..e442dd6cf 100644 --- a/I2CDEVICES.md +++ b/I2CDEVICES.md @@ -130,5 +130,6 @@ Index | Define | Driver | Device | Address(es) | Bus2 | Descrip 90 | USE_RX8010 | xdrv_56 | RX8010 | 0x32 | Yes | RX8010 RTC from IOTTIMER 91 | USE_MS5837 | xsns_116 | MS5837 | 0x76 | | Pressure and temperature sensor 92 | USE_PCF85063 | xdrv_56 | PCF85063 | 0x51 | | PCF85063 Real time clock + 93 | USE_AS33772S | xdrv_119 | AS33772S | 0x52 | | AS33772S USB PD Sink Controller NOTE: Bus2 supported on ESP32 only. diff --git a/RELEASENOTES.md b/RELEASENOTES.md index efaa993c6..c0ab468e7 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -133,6 +133,7 @@ The latter links can be used for OTA upgrades too like ``OtaUrl https://ota.tasm ### Breaking Changed ### Changed +- ESP8266 platform update from 2024.09.00 to 2025.05.00 [#23448](https://github.com/arendst/Tasmota/issues/23448) - ESP32 Platform from 2025.04.30 to 2025.05.30, Framework (Arduino Core) from v3.1.3.250411 to v3.1.3.250504 and IDF from v5.3.2.250403 to v5.3.3.250501 [#23404](https://github.com/arendst/Tasmota/issues/23404) - GPIOViewer from v1.6.2 to v1.6.3 (No functional change) - Allow command `WebRefresh` minimum from 1000 to 400 mSec diff --git a/tasmota/tasmota_xdrv_driver/xdrv_01_9_webserver.ino b/tasmota/tasmota_xdrv_driver/xdrv_01_9_webserver.ino index 20616d057..76b8c8e30 100644 --- a/tasmota/tasmota_xdrv_driver/xdrv_01_9_webserver.ino +++ b/tasmota/tasmota_xdrv_driver/xdrv_01_9_webserver.ino @@ -1125,8 +1125,8 @@ void WSContentSend_Voltage(const char *types, float f_voltage) { /*-------------------------------------------------------------------------------------------*/ -void WSContentSend_CurrentMA(const char *types, float f_current) { - WSContentSend_PD(HTTP_SNS_F_CURRENT_MA, types, Settings->flag2.current_resolution, &f_current); +void WSContentSend_Current(const char *types, float f_current) { + WSContentSend_PD(HTTP_SNS_F_CURRENT, types, Settings->flag2.current_resolution, &f_current); } /*-------------------------------------------------------------------------------------------*/