查看温度命令(获取到的数值除以1000就是摄氏温度值)
cat /sys/class/thermal/thermal_zone0/temp
python脚本源码
f=open('/sys/class/thermal/thermal_zone0/temp', 'r')
s=f.read()
temp =int(s)
temp=temp/1000
print(temp)
f.close()
cat /sys/class/thermal/thermal_zone0/temp
f=open('/sys/class/thermal/thermal_zone0/temp', 'r')
s=f.read()
temp =int(s)
temp=temp/1000
print(temp)
f.close()
本文标题:查看树莓派温度命令以及python脚本
本文链接:https://www.haomeiwen.com/subject/hfuwnhtx.html
网友评论