查看树莓派温度命令以及python脚本
2020-05-12 本文已影响0人
DCBXZ
查看温度命令(获取到的数值除以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()