程式狂想筆記

一個攻城師奮鬥史

0%

[Raspberry Pi]使用Python查詢溫度

cpuTemp.py
1
2
3
4
f = open("/sys/class/thermal/thermal_zone0/temp","r")
for t in f:
print "CPU temp:"+t[:2]+"."+t[2:5]
f.close()