Raise thermal setpoint

We don't need to control all the way down to 70C
pull/35008/head
Robbe Derks 2 weeks ago committed by GitHub
parent f237649a7a
commit 54698389f7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      system/hardware/fan_controller.py

@ -27,7 +27,7 @@ class TiciFanController(BaseFanController):
if ignition != self.last_ignition: if ignition != self.last_ignition:
self.controller.reset() self.controller.reset()
error = 70 - cur_temp error = 75 - cur_temp
fan_pwr_out = -int(self.controller.update( fan_pwr_out = -int(self.controller.update(
error=error, error=error,
feedforward=np.interp(cur_temp, [60.0, 100.0], [0, -100]) feedforward=np.interp(cur_temp, [60.0, 100.0], [0, -100])

Loading…
Cancel
Save