网创优客建站品牌官网
为成都网站建设公司企业提供高品质网站建设
热线:028-86922220
成都专业网站建设公司

定制建站费用3500元

符合中小企业对网站设计、功能常规化式的企业展示型网站建设

成都品牌网站建设

品牌网站建设费用6000元

本套餐主要针对企业品牌型网站、中高端设计、前端互动体验...

成都商城网站建设

商城网站建设费用8000元

商城网站建设因基本功能的需求不同费用上面也有很大的差别...

成都微信网站建设

手机微信网站建站3000元

手机微信网站开发、微信官网、微信商城网站...

建站知识

当前位置:首页 > 建站知识

树莓派怎么用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://bjjierui.cn/article/jhhocs.html

其他资讯