- refactored

- increased Hold.Pid.kp
- decrease state change HEAT TO HOLD windows to 1°C
This commit is contained in:
jens
2021-10-12 09:11:07 +02:00
parent ff90c6d90c
commit 425567f3db
5 changed files with 65 additions and 96 deletions
+1 -2
View File
@@ -36,8 +36,7 @@ if __name__ == '__main__':
taskmgr.add(heater_task)
# Temperature Controller
tc_params = config['TempCtrl']
tc = PidFactory.create(config['Controller']['pid_type'], DT, tc_params)
tc = PidFactory.create(config['Controller']['pid_type'], DT, config['TempCtrl'], config['Model'])
tc_task = TcTask(tc, DT_TASK, dispatcher.msgio_get("TempCtrl"))
taskmgr.add(tc_task)