Fix MLX90614 naming (#20592)

This commit is contained in:
Theo Arends 2024-01-25 14:29:12 +01:00
parent ab49593f9f
commit 758549c4c3
3 changed files with 4 additions and 3 deletions

View File

@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
## [13.3.0.4]
### Added
- HASPmota support for `min` and `max` attribute in `slider`
- HASPmota support for `min` and `max` attribute in `slider` (#20582)
### Breaking Changed

View File

@ -154,6 +154,7 @@ The latter links can be used for OTA upgrades too like ``OtaUrl https://ota.tasm
- LVGL option to add `lv.keyboard` extra widget [#20496](https://github.com/arendst/Tasmota/issues/20496)
- HASPmota `haspmota.page_show()` to change page [#20333](https://github.com/arendst/Tasmota/issues/20333)
- HASPmota type `chart` [#20372](https://github.com/arendst/Tasmota/issues/20372)
- HASPmota support for `min` and `max` attribute in `slider` [#20582](https://github.com/arendst/Tasmota/issues/20582)
- Matter support for password for remote Tasmota devices [#20296](https://github.com/arendst/Tasmota/issues/20296)
### Breaking Changed

View File

@ -68,8 +68,8 @@ void MLX90614_Every_Second(void)
#ifdef USE_WEBSERVER
const char HTTP_IRTMP[] PROGMEM =
"{s}MXL90614 " "OBJ-" D_TEMPERATURE "{m}%s C" "{e}"
"{s}MXL90614 " "AMB-" D_TEMPERATURE "{m}%s C" "{e}";
"{s}MLX90614 " "OBJ-" D_TEMPERATURE "{m}%s C" "{e}"
"{s}MLX90614 " "AMB-" D_TEMPERATURE "{m}%s C" "{e}";
#endif // USE_WEBSERVER
void MLX90614_Show(uint8_t json)