1
0
Fork 0
home-stack-ansible/roles/k3s/files/50-rpi-fan.rules

18 lines
506 B
Plaintext
Raw Normal View History

2021-12-05 02:40:14 +00:00
SUBSYSTEM=="thermal"
KERNEL=="thermal_zone0"
# If the temp hits 75c, turn on the fan. Turn it off again when it goes back down to 70.
2022-02-14 16:14:46 +00:00
ATTR{trip_point_3_temp}=="75000"
ATTR{trip_point_3_hyst}=="5000"
2021-12-05 02:40:14 +00:00
# If the temp hits 78c, higher RPM.
2022-02-14 16:14:46 +00:00
ATTR{trip_point_2_temp}=="78000"
ATTR{trip_point_2_hyst}=="2000"
2021-12-05 02:40:14 +00:00
# If the temp hits 80c, higher RPM.
2022-02-14 16:14:46 +00:00
ATTR{trip_point_1_temp}=="80000"
ATTR{trip_point_1_hyst}=="2000"
2021-12-05 02:40:14 +00:00
# If the temp hits 81c, highest RPM.
2022-02-14 16:14:46 +00:00
ATTR{trip_point_0_temp}=="81000"
ATTR{trip_point_0_hyst}=="5000"