Jetson nano備忘録3
Jetson nano用のWaveshare製ファンについて。コネクタの取り付け方法は切り欠きを合わせれば問題ない。
取り付けただけでは電源を入れてもファンが作動しないため、以下のコマンドを実行してファンの回転数を指定する必要がある。
# オフ
sudo sh -c 'echo 0 > /sys/devices/pwm-fan/target_pwm'
# 50%
sudo sh -c 'echo 128 > /sys/devices/pwm-fan/target_pwm'
# 100%
sudo sh -c 'echo 255 > /sys/devices/pwm-fan/target_pwm'
回転数の状態は以下のコマンドで取得できる。
# 0~255
cat /sys/devices/pwm-fan/target_pwm
ファン回転数の自動制御スクリプトは以下のコマンドでインストール可能。
cd ~
sudo apt install python3-dev
git clone https://github.com/Pyrestone/jetson-fan-ctl.git
cd jetson-fan-ctl
./install.sh
sudo service automagic-fan restart