mirror of
https://github.com/Ysurac/openmptcprouter-feeds.git
synced 2025-03-09 15:40:03 +00:00
Delete fengshan
This commit is contained in:
parent
d3250f7284
commit
6bc8ee2d6b
1 changed files with 0 additions and 30 deletions
|
@ -1,30 +0,0 @@
|
||||||
#!/bin/sh /etc/rc.common
|
|
||||||
|
|
||||||
START=99
|
|
||||||
|
|
||||||
# 温度阈值设置
|
|
||||||
HIGH_THRESHOLD=60000
|
|
||||||
LOW_THRESHOLD=50000
|
|
||||||
|
|
||||||
# 读取初始温度值
|
|
||||||
temperature=$(cat /sys/class/thermal/thermal_zone0/temp)
|
|
||||||
echo "初始温度:$temperature"
|
|
||||||
|
|
||||||
start() {
|
|
||||||
while true; do
|
|
||||||
temperature=$(cat /sys/class/thermal/thermal_zone0/temp)
|
|
||||||
echo "当前温度:$temperature"
|
|
||||||
|
|
||||||
if [ "$temperature" -ge "$HIGH_THRESHOLD" ]; then
|
|
||||||
echo 1 > /sys/class/leds/green:fengshan/brightness
|
|
||||||
echo "风扇高转速"
|
|
||||||
logger -t "fengshanup" "温度过高"
|
|
||||||
elif [ "$temperature" -le "$LOW_THRESHOLD" ]; then
|
|
||||||
echo 0 > /sys/class/leds/green:fengshan/brightness
|
|
||||||
echo "风扇低转速"
|
|
||||||
logger -t "fengshandown" "温度正常"
|
|
||||||
fi
|
|
||||||
|
|
||||||
sleep 30 # 设置循环间隔为30秒
|
|
||||||
done
|
|
||||||
}
|
|
Loading…
Add table
Add a link
Reference in a new issue