资讯

精准传达 • 有效沟通

从品牌网站建设到网络营销策划,从策略到执行的一站式服务

树莓派怎么用Python显示cpu温度

这篇文章将为大家详细讲解有关树莓派怎么用Python显示cpu温度,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。

成都创新互联公司是一家朝气蓬勃的网站建设公司。公司专注于为企业提供信息化建设解决方案。从事网站开发,网站制作,网站设计,网站模板,微信公众号开发,软件开发,小程序开发,十载建站对三维植被网等多个行业,拥有丰富的网站维护经验。

  1. 树莓派显示cpu温度

    在linux系统终端中可以通过cat /sys/class/thermal/thermal_zone0/temp 查看cpu温度;

    通过命令 /opt/vc/bin/vcgencmd measure_temp 查看gpu温度。

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()

关于“树莓派怎么用Python显示cpu温度”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,使各位可以学到更多知识,如果觉得文章不错,请把它分享出去让更多的人看到。


当前文章:树莓派怎么用Python显示cpu温度
网站链接:http://cdkjz.cn/article/jhhocs.html
多年建站经验

多一份参考,总有益处

联系快上网,免费获得专属《策划方案》及报价

咨询相关问题或预约面谈,可以通过以下方式与我们联系

大客户专线   成都:13518219792   座机:028-86922220