Loading... > 一个简单的脚本,和python版的一样,只是去除python版的RPi库的依赖。 > 较为完善的是Golang版 配合crontab做定时任务 ```shell #每五分钟执行一次 */5 * * * * /home/pi/fen.sh ``` fen.sh文件 ```shell #!/bin/bash a=$(cat /sys/class/thermal/thermal_zone0/temp) temp=$((a/1000)) pin=14 if [ ! -d "/sys/class/gpio/gpio${pin}" ] then echo $pin > /sys/class/gpio/export fi if [ $temp -lt 50 ] then echo low > /sys/class/gpio/gpio${pin}/direction elif [ $temp -gt 55 ] then echo high > /sys/class/gpio/gpio${pin}/direction fi ``` Last modification:September 6, 2020 © Allow specification reprint Support Appreciate the author AliPayWeChat Like 0 如果觉得我的文章对你有用,请随意赞赏
4 comments
太好了,这就给兽装来一套
XD
啊这,这只是给树莓派cpu散热的,兽装散热的话还要另外做
啊这,了解了(兽装在排期了)