import commands
def get_cpu_temp():
tempFile = open( "/sys/class/thermal/thermal_zone0/temp" )
cpu_temp = tempFile.read()
tempFile.close()
return float(cpu_temp)/1000
# Uncomment the next line if you want the temp in Fahrenheit
#return float(1.8*cpu_temp)+32
def get_gpu_temp():
gpu_temp = commands.getoutput( '/opt/vc/bin/vcgencmd measure_temp' ).replace( 'temp=', '' ).replace( '\'C', '' )
return float(gpu_temp)
# Uncomment the next line if you want the temp in Fahrenheit
# return float(1.8* gpu_temp)+32
def main():
print "CPU temp: ", str(get_cpu_temp())
print "GPU temp: ", str(get_gpu_temp())
if __name__ == '__main__':
main()
相关文章
- 11-05树莓派获取CPU温度
- 11-05python 显示树莓派的cpu与cpu温度
- 11-05《树莓派Python编程入门与实战(第2版)》——3.8 使用适当的工具
- 11-05《树莓派Python编程入门与实战》——1.3 哪些树莓派外设是必须的
- 11-05《树莓派Python编程入门与实战》——3.8 使用适当的工具
- 11-05《树莓派Python编程入门与实战》——1.6 让你的树莓派正常工作
- 11-05《树莓派Python编程入门与实战》——1.4 其他不错的外设
- 11-05《树莓派Python编程入门与实战(第2版)》——1.7 排除树莓派的故障
- 11-05<转>Python 多线程的单cpu与cpu上的多线程的区别
- 11-05《树莓派Python编程入门与实战》——1.7 排除树莓派的故障