mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-06 07:49:52 +03:00
added missing heatingtype
This commit is contained in:
@@ -34,6 +34,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
- Accurate detection of warm water and heating (#515)
|
||||
- Fix writing to the Junkers FR120 thermostat
|
||||
- support for changing summermode
|
||||
- added missing `heatingtype` to thermostat data
|
||||
|
||||
### Changed
|
||||
- renamed wWCircPumpType to wWChargeType
|
||||
@@ -45,12 +46,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
- Updated EMS-ESP official documentation (https://emsesp.github.io/docs/#/)
|
||||
- JWT Secret renamed to Super User Password
|
||||
- EMS Devices in Web UI shows button and tooltip to remind users they can click on a device
|
||||
- MQTT boiler_data payload split into two topics `boiler_data_main` and `boiler_data_ww`
|
||||
|
||||
### Removed
|
||||
- Console contexts for thermostat and boiler
|
||||
- Removed option to enable/disable the MQTT Heartbeat. It's always on.
|
||||
|
||||
|
||||
## [2.0.1] September 13 2020
|
||||
|
||||
### Added
|
||||
|
||||
@@ -215,6 +215,7 @@ void Thermostat::device_info_web(JsonArray & root) {
|
||||
print_value_json(root, F("manualtemp"), FPSTR(prefix_str), F_(manualtemp), F_(degrees), output);
|
||||
print_value_json(root, F("holidaytemp"), FPSTR(prefix_str), F_(holidaytemp), F_(degrees), output);
|
||||
print_value_json(root, F("nofrosttemp"), FPSTR(prefix_str), F_(nofrosttemp), F_(degrees), output);
|
||||
print_value_json(root, F("heatingtype"), FPSTR(prefix_str), F_(heatingtype), nullptr, output);
|
||||
print_value_json(root, F("targetflowtemp"), FPSTR(prefix_str), F_(targetflowtemp), F_(degrees), output);
|
||||
print_value_json(root, F("offsettemp"), FPSTR(prefix_str), F_(offsettemp), F_(degrees), output);
|
||||
print_value_json(root, F("designtemp"), FPSTR(prefix_str), F_(designtemp), F_(degrees), output);
|
||||
|
||||
@@ -249,6 +249,7 @@ MAKE_PSTR(nighttemp, "Night temperature")
|
||||
MAKE_PSTR(manualtemp, "Manual temperature")
|
||||
MAKE_PSTR(holidaytemp, "Holiday temperature")
|
||||
MAKE_PSTR(nofrosttemp, "Nofrost temperature")
|
||||
MAKE_PSTR(heatingtype, "Heating type")
|
||||
MAKE_PSTR(targetflowtemp, "Target flow temperature")
|
||||
MAKE_PSTR(offsettemp, "Offset temperature")
|
||||
MAKE_PSTR(designtemp, "Design temperature")
|
||||
|
||||
Reference in New Issue
Block a user