Browse Source

thermostat: try with an hysteresis of 0.1 degree

master
Richard Genoud 4 years ago
parent
commit
e7a8bc86e5
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      soft/thermostat/src/mainwindow.cpp

+ 1
- 1
soft/thermostat/src/mainwindow.cpp View File

@ -328,7 +328,7 @@ bool MainWindow::get_heater_order(int room_idx)
/* TODO: make it smarter */
if (qFabs(get_target_temperature(room_idx)
- m_zones.at(room_idx)->m_temperature_value) < 0.3) {
- m_zones.at(room_idx)->m_temperature_value) < 0.1) {
/*
* Stay like before
*/


Loading…
Cancel
Save