python3获取树莓派cpu温度
.python获取树莓派代码:#! /usr/bin/python#! -*- coding: utf-8 -*-# 打开文件file = open("/sys/class/thermal/thermal_zone0/temp")# 读取结果,并转换为浮点数temp = float(file.read()) / 1000# 关闭文件file.close()# 向终端控制台打印print("temp
·
.python获取树莓派代码:
#! /usr/bin/python
#! -*- coding: utf-8 -*-
# 打开文件
file = open("/sys/class/thermal/thermal_zone0/temp")
# 读取结果,并转换为浮点数
temp = float(file.read()) / 1000
# 关闭文件
file.close()
# 向终端控制台打印
print("temp:%.3f" %temp)
更多推荐
已为社区贡献2条内容
所有评论(0)