Skip to content

Commit 6a27899

Browse files
committed
Update changelogs
1 parent a6ab85f commit 6a27899

File tree

4 files changed

+5
-2
lines changed

4 files changed

+5
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ All notable changes to this project will be documented in this file.
1616
### Changed
1717
- 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)
1818
- 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)
19+
- ESP8266 platform update from 2024.09.00 to 2025.05.00 (#23448)
1920

2021
### Fixed
2122
- Haspmota `haspmota.parse()` page parsing (#23403)

I2CDEVICES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,5 +130,6 @@ Index | Define | Driver | Device | Address(es) | Bus2 | Descrip
130130
90 | USE_RX8010 | xdrv_56 | RX8010 | 0x32 | Yes | RX8010 RTC from IOTTIMER
131131
91 | USE_MS5837 | xsns_116 | MS5837 | 0x76 | | Pressure and temperature sensor
132132
92 | USE_PCF85063 | xdrv_56 | PCF85063 | 0x51 | | PCF85063 Real time clock
133+
93 | USE_AS33772S | xdrv_119 | AS33772S | 0x52 | | AS33772S USB PD Sink Controller
133134

134135
NOTE: Bus2 supported on ESP32 only.

RELEASENOTES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,7 @@ The latter links can be used for OTA upgrades too like ``OtaUrl https://ota.tasm
133133
### Breaking Changed
134134

135135
### Changed
136+
- ESP8266 platform update from 2024.09.00 to 2025.05.00 [#23448](https://github.com/arendst/Tasmota/issues/23448)
136137
- 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)
137138
- GPIOViewer from v1.6.2 to v1.6.3 (No functional change)
138139
- Allow command `WebRefresh` minimum from 1000 to 400 mSec

tasmota/tasmota_xdrv_driver/xdrv_01_9_webserver.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1125,8 +1125,8 @@ void WSContentSend_Voltage(const char *types, float f_voltage) {
11251125

11261126
/*-------------------------------------------------------------------------------------------*/
11271127

1128-
void WSContentSend_CurrentMA(const char *types, float f_current) {
1129-
WSContentSend_PD(HTTP_SNS_F_CURRENT_MA, types, Settings->flag2.current_resolution, &f_current);
1128+
void WSContentSend_Current(const char *types, float f_current) {
1129+
WSContentSend_PD(HTTP_SNS_F_CURRENT, types, Settings->flag2.current_resolution, &f_current);
11301130
}
11311131

11321132
/*-------------------------------------------------------------------------------------------*/

0 commit comments

Comments
 (0)