我正在使用 python 脚本将三个文件的内容传输到不同的三个文件。原始文件是我连接到运行 raspian 的 RPI 的三个温度计的数据。所有脚本应该做的是获取文件的内容并移动它们,以便我可以让另一个程序(ComScript)读取和解析它们。
我的问题是,如果一个或多个温度计在脚本开始之前断开连接,它就会冻结。如果我在脚本运行时断开温度计,它不会冻结。
这是代码
import time
a = 1
while a == 1:
try:
tfile = open("/sys/bus/w1/devices/28-000004d2ca5e/w1_slave")
text = tfile.read()
tfile.close()
temperature = text
tfile2 = open("/sys/bus/w1/devices/28-000004d2fb20/w1_slave")
text2 = tfile2.read()
tfile2.close()
temperature2 = text2
tfile3 = open("/sys/bus/w1/devices/28-000004d30568/w1_slave")
text3 = tfile3.read()
tfile3.close()
temperature3 = text3
textfile = open("/home/pi/ComScriptPi/profiles/Temperature_parse/w1_slave1", "w ")
textfile2 = open("/home/pi/ComScriptPi/profiles/Temperature_parse/w1_slave2", "w ")
textfile3 = open("/home/pi/ComScriptPi/profiles/Temperature_parse/w1_slave3", "w ")
temperature = str(temperature)
temperature2 = str(temperature2)
temperature3 = str(temperature3)
textfile.write(temperature)
textfile2.write(temperature2)
textfile3.write(temperature3)
textfile.close()
textfile2.close()
textfile3.close()
print temperature
print temperature2
print temperature3
time.sleep(3)
except:
pass
我添加了异常传递,因为即使它得到错误的值,我也需要它继续运行。当其中一个温度计断开连接时,python 试图读取的文件是空白的,但仍然存在。