美文网首页
查看树莓派温度命令以及python脚本

查看树莓派温度命令以及python脚本

作者: DCBXZ | 来源:发表于2020-05-12 23:17 被阅读0次

    查看温度命令(获取到的数值除以1000就是摄氏温度值)

    cat /sys/class/thermal/thermal_zone0/temp
    

    python脚本源码

    f=open('/sys/class/thermal/thermal_zone0/temp', 'r') 
    s=f.read()
    temp =int(s)
    temp=temp/1000
    print(temp)
    f.close()
    

    相关文章

      网友评论

          本文标题:查看树莓派温度命令以及python脚本

          本文链接:https://www.haomeiwen.com/subject/hfuwnhtx.html