mirror of
https://github.com/arendst/Tasmota.git
synced 2026-09-11 09:13:17 +00:00
Fix BLE MI32 unwanted dot/comma replacement (#25009)
This commit is contained in:
+1
-1
@@ -26,7 +26,7 @@ All notable changes to this project will be documented in this file.
|
||||
- MiEL HVAC Modbus length-based framing, queue writes, FC03 sensor mirror (#24993)
|
||||
- Zigbee deferred timer use after free, and the truncated backtrace that hid it (#24979)
|
||||
- Matter: fix autoconfiguration after configuration reset (#24997)
|
||||
- Berry rare register allocation bug
|
||||
- Berry rare register allocation bug (#25010)
|
||||
|
||||
### Removed
|
||||
|
||||
|
||||
@@ -131,6 +131,7 @@ The latter links can be used for OTA upgrades too like ``OtaUrl https://ota.tasm
|
||||
### Fixed
|
||||
- MiEL HVAC Modbus length-based framing, queue writes, FC03 sensor mirror [#24993](https://github.com/arendst/Tasmota/issues/24993)
|
||||
- Zigbee deferred timer use after free, and the truncated backtrace that hid it [#24979](https://github.com/arendst/Tasmota/issues/24979)
|
||||
- Berry rare register allocation bug [#25010](https://github.com/arendst/Tasmota/issues/25010)
|
||||
- Matter autoconfiguration after configuration reset [#24997](https://github.com/arendst/Tasmota/issues/24997)
|
||||
|
||||
### Removed
|
||||
|
||||
@@ -4430,7 +4430,7 @@ void MI32Show(bool json)
|
||||
snprintf_P(rssi, sizeof(rssi), PSTR("%d (%d%%)"), p->RSSI, rssi_as_quality);
|
||||
|
||||
// New line: Device name, battery state, RSSI and last seen
|
||||
WSContentSend_PD(SI_WEB_STATUS_LINE,
|
||||
WSContentSend_P(SI_WEB_STATUS_LINE,
|
||||
p->MAC,
|
||||
HtmlEscape(label).c_str(), sbatt, rssi);
|
||||
|
||||
@@ -4450,12 +4450,12 @@ void MI32Show(bool json)
|
||||
}
|
||||
}
|
||||
|
||||
WSContentSend_PD(SI_WEB_END_STATUS, dhm);
|
||||
WSContentSend_P(SI_WEB_END_STATUS, dhm);
|
||||
|
||||
/*
|
||||
// Icon test line
|
||||
WSContentSend_P(SI_WEB_LINE_START);
|
||||
WSContentSend_PD(PSTR(" 1'🏃' 2'✋' 3'⛅' 4'🚀' 5'🌊' 6'⚖' 7'Ω' 8'🫘'"));
|
||||
WSContentSend_P(PSTR(" 1'🏃' 2'✋' 3'⛅' 4'🚀' 5'🌊' 6'⚖' 7'Ω' 8'🫘'"));
|
||||
WSContentSend_P(PSTR("{e}"));
|
||||
*/
|
||||
// Optional new line: Sensors
|
||||
|
||||
Reference in New Issue
Block a user