thermostat typos, trigger new dev build

This commit is contained in:
MichaelDvP
2020-11-11 09:15:58 +01:00
parent 82a35f9a7e
commit f5b7bad2fb
3 changed files with 4 additions and 4 deletions

View File

@@ -1,7 +1,7 @@
# Changelog
### Added
- function keys in editor: cursor, del, pos1, end. F1=help, F2=show, F10=report
- function keys in editor: cursor, del, home, end. F1=help, F2=show, and other shortcuts
- add sm100 pump working time and energy units
- heating curve parameters for RC300

View File

@@ -232,8 +232,8 @@ void Thermostat::device_info_web(JsonArray & root) {
print_value_json(root, F("designtemp"), FPSTR(prefix_str), F_(designtemp), F_(degrees), json);
print_value_json(root, F("roominfluence"), FPSTR(prefix_str), F_(roominfluence), F_(degrees), json);
print_value_json(root, F("flowtempoffset"), FPSTR(prefix_str), F_(flowtempoffset), F_(degrees), json);
print_value_json(root, F("minflowtemp"), F_(2spaces), F_(minflowtemp), F_(degrees), json);
print_value_json(root, F("maxflowtemp"), F_(2spaces), F_(maxflowtemp), F_(degrees), json);
print_value_json(root, F("minflowtemp"), FPSTR(prefix_str), F_(minflowtemp), F_(degrees), json);
print_value_json(root, F("maxflowtemp"), FPSTR(prefix_str), F_(maxflowtemp), F_(degrees), json);
print_value_json(root, F("summertemp"), FPSTR(prefix_str), F_(summertemp), F_(degrees), json);
print_value_json(root, F("summermode"), FPSTR(prefix_str), F_(summermode), F_(degrees), json);
print_value_json(root, F("mode"), FPSTR(prefix_str), F_(mode), nullptr, json);

View File

@@ -128,7 +128,7 @@ void System::syslog_init() {
if (!syslog_enabled_) {
syslog_.log_level((uuid::log::Level)-1);
syslog_.mark_interval(0);
syslog_.destination((IPAddress)0);
syslog_.destination((IPAddress)((uint32_t)0));
return;
}