[Raspberry Pi]使用Python查詢溫度 發表於 2014-10-24 更新於 2021-06-27 分類於 Raspberry PI Disqus: cpuTemp.py1234f = open("/sys/class/thermal/thermal_zone0/temp","r")for t in f: print "CPU temp:"+t[:2]+"."+t[2:5]f.close()