mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-09 01:09:51 +03:00
added missing heatingtype
This commit is contained in:
@@ -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