This commit is contained in:
Martin Brodbeck 2022-12-23 13:29:10 +01:00
parent f19a5bab0d
commit 1e70cbb13d
2 changed files with 4 additions and 4 deletions

View file

@ -108,7 +108,7 @@ int main() {
relais.activate(isHeating);
lcdText = fmt::format("ACT: {:05.2f}{}C {}\nACT: {:05.2f}{}C {}",
lcdText = fmt::format("ACT: {:05.2f}{}C {}\nTGT: {:05.2f}{}C {}",
temp_act, CUSTOM_CHAR_DEG, heatInfo, temp_tgt,
CUSTOM_CHAR_DEG, systemInfo);
myLCD.setCursor(0, 0);
@ -116,4 +116,4 @@ int main() {
sleep_until((absolute_time_t){destTime});
}
}
}