From cbc46180c8844c8be6ce4d059f093f44a5ca7e30 Mon Sep 17 00:00:00 2001 From: herizon1054 Date: Tue, 7 Apr 2026 15:29:29 +0800 Subject: [PATCH] Update fan_controller.py --- system/hardware/fan_controller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/hardware/fan_controller.py b/system/hardware/fan_controller.py index 365688429a..e04bda63c0 100755 --- a/system/hardware/fan_controller.py +++ b/system/hardware/fan_controller.py @@ -30,7 +30,7 @@ class TiciFanController(BaseFanController): error = cur_temp - 75 fan_pwr_out = int(self.controller.update( error=error, - feedforward=np.interp(cur_temp, [60.0, 100.0], [0, 100]) + feedforward=np.interp(cur_temp, [50.0, 90.0], [0, 100]) )) self.last_ignition = ignition