From 7c5718c2adb1c49001c2f34ee90910d7373ead9a Mon Sep 17 00:00:00 2001 From: do Date: Sun, 28 Jun 2020 20:57:33 +0200 Subject: [PATCH] higher fan speed start --- hardware/raspberrypi/fan/files/fan_ctrl.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hardware/raspberrypi/fan/files/fan_ctrl.py b/hardware/raspberrypi/fan/files/fan_ctrl.py index 34e5463..abbce6a 100644 --- a/hardware/raspberrypi/fan/files/fan_ctrl.py +++ b/hardware/raspberrypi/fan/files/fan_ctrl.py @@ -11,7 +11,7 @@ import sys # Configuration FAN_PIN = getenv('RPI_FAN_PIN', 21) # BCM pin used to drive transistor's base WAIT_TIME = getenv('RPI_FAN_WAITTIME', 5) # [s] Time to wait between each refresh -FAN_MIN = getenv('RPI_FAN_MIN', 70) # [%] Fan minimum speed. +FAN_MIN = getenv('RPI_FAN_MIN', 80) # [%] Fan minimum speed. PWM_FREQ = getenv('RPI_FAN_PWMFREQ', 25000) # [Hz] Change this value if fan has strange behavior # Fan speed will change only of the difference of temperature is higher than hysteresis hyst = getenv('RPI_FAN_HYST', 1) @@ -21,8 +21,8 @@ prom_collect_dir = getenv('RPI_PROM_COLLECTDIR','/tmp/textfile-collector') prom_collect_file = prom_collect_dir + '/rpi_fan.prom' # Configurable temperature and fan speed steps -tempSteps = [60, 63, 66, 70, 75] # [°C] -speedSteps = [0, 70, 80, 90, 100] # [%] +tempSteps = [60, 66, 70, 75] # [°C] +speedSteps = [0, 80, 85, 90, 100] # [%] # tempSteps = [40, 45] # speedSteps = [0, 100]