Raspberry Pi PoE HAT のファン制御

2021年5月26日

HATについているファンの音がうるさいので発熱しない限りは回らないようにするための設定

SD書くたびに忘れて調べだすのでメモ

rasberry pi 4 は80度ほどで動作周波数が下がるらしいので、75度で全開に回るようにして極力回さない設定

ubuntu@ubuntu:~$ cat /boot/firmware/usercfg.txt 
# Place "config.txt" changes (dtparam, dtoverlay, disable_overscan, etc.) in
# this file. Please refer to the README file for a description of the various
# configuration files on the boot partition.
dtoverlay=rpi-poe
dtparam=poe_fan_temp0=65000
dtparam=poe_fan_temp1=68000
dtparam=poe_fan_temp2=70000
dtparam=poe_fan_temp3=75000
  • poe_fan_temp0=ファンが回りだす温度
  • poe_fan_temp1=ファンが速くなる温度
  • poe_fan_temp2=ファンが速くなる温度
  • poe_fan_temp3=ファンが速くなる温度