其他分享
首页 > 其他分享> > 玩转树莓派——001 温度监控,微信推送,开机自启动

玩转树莓派——001 温度监控,微信推送,开机自启动

作者:互联网

5月份入手树莓派 raspberry Pi4 8G版本,随手记录一些好玩的

树莓派4性能很强,同时也是发热大户。树莓派内置了一个温度传感器,可以通过python脚本实现温度读取,并在超限时通过server酱来微信推送,及时提醒。

# -*- coding:utf-8 -*-
import requests
import time
import os

# Server酱的推送地址,其中SendKey要换成你自己申请的key
fangtang_url = 'https://sctapi.ftqq.com/[SendKey].send'
data = {"text": "", "desp":""}

while True:
    t = int(open("/sys/class/thermal/thermal_zone0/temp").read())
    if t > 65000:
        desp = os.popen("ps -ef").read()
        data['text'] = f'{time.strftime("%m%d %H:%M:%S")} 温度:{t}'
        data['desp'] = desp.replace("\n","\n\n")
        requests.post(url=fangtang_url, data= data)

    time.sleep(60)

代码核心是读取 /sys/class/thermal/thermal_zone0/temp ,注意读取到的数值除以1000才是温度,比如 39400代表39.4℃,上述代码门限是65000 表示65度

把上述代码存成一个cpu_thermal_monitor.py文件,放在pi目录下

编辑 /etc/rc.local 文件,实现开机自启动

# Print the IP address
_IP=$(hostname -I) || true
if [ "$_IP" ]; then
  printf "My IP address is %s\n" "$_IP"
fi

# 在 exit之前加入下面这句

su pi python3 /root/py/cpu_thermal_monitor/cpu_thermal_monitor.py &

exit 0

 

 

标签:树莓,monitor,微信,desp,thermal,IP,自启动,data
来源: https://blog.csdn.net/Soloe/article/details/117423398