基本上,我创建的代码必须做三件事: 1-从DS18B20传感器读取温度 2-将温度与在.csv文件中验证的时间一起写入 3-使用.csv文件中的数据绘制图形 这是代码:
import os
import glob
import time
os.system('modprobe w1-gpio')
os.system('modprobe w1-therm')
base_dir = '/sys/bus/w1/devices/'
device_folder = glob.glob(base_dir + '28*')[0]
device_file = device_folder + '/w1_slave'
def read_temp_raw():
f = open(device_file, 'r')
lines = f.readlines()
f.close()
return lines
def read_temp():
lines = read_temp_raw()
while lines[0].strip()[-3:] != 'YES':
time.sleep(0.2)
lines = read_temp_raw()
equals_pos = lines[1].find('t=')
if equals_pos != -1:
temp_string = lines[1][equals_pos+2:]
temp_c = float(temp_string) / 1000.0
return temp_c
while True:
print(read_temp())
time.sleep(1)
with open("/home/pi/cpu_temp.csv", "a") as log:
while True:
temp = temp_c
log.write("{0},{1}\n".format(strftime("%d-%m-%Y %H:%M"),str(temp)))
sleep(5)
import matplotlib.pyplot as plt
plt.ion()
x = []
y = []
y.append(temp)
x.append(time())
plt.clf()
plt.scatter(x,y)
plt.plot(x,y)
plt.draw
有人可以告诉我这是什么问题吗?我自己会解决这个问题,而不问这个问题,但是我实际上不知道出什么问题了,代码运行得很好,没有错误。
答案 0 :(得分:1)
您写入文件的代码块:
with open("/home/pi/cpu_temp.csv", "a") as log:
while True:
temp = temp_c
log.write("{0},{1}\n".format(strftime("%d-%m-%Y %H:%M"),str(temp)))
sleep(5)
永远不会执行,因为在它之前执行了无限循环:
while True:
print(read_temp())
time.sleep(1)