重试数据请求
retry request of data
(新手 Python 程序员在这里最多..)
我使用模块访问名为 BAC0 的楼宇自动化系统。当我的 Windows 笔记本电脑 运行 通过本地 Wifi LAN 将 BACnet 与楼宇自动化系统通信以检索数据时,该脚本会从我的 Windows 笔记本电脑创建一个楼宇自动化设备。
具体来说,下面的脚本每 120 秒轮询一次热水厂控制器以获取离开温度传感器,然后在 while True 循环中每 600 次更新一次。
import BAC0
import time
#alarm setpoint
setPoint = 140
#connect to device
bacnet = BAC0.lite()
hws = BAC0.device('100:99', 30099, bacnet, poll=120, history_size=10000)
while True:
data = hws['SHWS-T']
time.sleep(600)
if data > setPoint:
good = f'[INFO] - Looks good, the temp of the {data} on {time.ctime()}'
print(good)
else:
bad = f'[INFO] - Looks bad, the temp of the {data} on {time.ctime()}'
print(bad)
print("Here's the coldest last 10 recorded boiler supply temp readings")
print(data.history.nsmallest(n=10, keep='last'))
print("I better get some help!")
无论如何,控制器不响应时不时发生的情况是,然后脚本会停止,因为如果这样......如果我知道如何做就太好了 retry
比如重试 3 次,然后 pass
再等 600 秒再试一次...
我知道下面的说法不正确,但像这样???
try:
if isinstance(Exception: Problem reading : SHWS-T)
# retry function?
retry()
else:
# This is our sensor value
pass
完整追溯:
benbartling@benbartling-HP-ProDesk-600-G1-SFF ~/Desktop/bac0 $ python interpreter.py
2019-04-12 13:39:49,484 - INFO | Starting BAC0 version 0.99.944 (Lite)
2019-04-12 13:39:49,513 - INFO | Using ip : 10.30.4.200
2019-04-12 13:39:49,514 - INFO | Starting app...
2019-04-12 13:39:49,514 - INFO | BAC0 started
2019-04-12 13:39:49,514 - INFO | Registered as Simple BACnet/IP App
2019-04-12 13:39:51,517 - INFO | Changing device state to DeviceDisconnected'>
2019-04-12 13:39:57,867 - INFO | Changing device state to RPMDeviceConnected'>
2019-04-12 13:39:58,306 - INFO | Device 30099:[Boiler] found... building points list
2019-04-12 13:39:59,683 - INFO | Ready!
2019-04-12 13:39:59,688 - INFO | Polling started, values read every 120 seconds
[INFO] - Looks good, the temp of the Boiler/SHWS-T : 141.62 degreesFahrenheit on Fri Apr 12 13:50:05 2019
[INFO] - Looks good, the temp of the Boiler/SHWS-T : 141.78 degreesFahrenheit on Fri Apr 12 14:00:06 2019
[INFO] - Looks good, the temp of the Boiler/SHWS-T : 143.18 degreesFahrenheit on Fri Apr 12 14:10:06 2019
[INFO] - Looks good, the temp of the Boiler/SHWS-T : 141.33 degreesFahrenheit on Fri Apr 12 14:20:06 2019
[INFO] - Looks good, the temp of the Boiler/SHWS-T : 143.15 degreesFahrenheit on Fri Apr 12 14:30:07 2019
[INFO] - Looks good, the temp of the Boiler/SHWS-T : 141.97 degreesFahrenheit on Fri Apr 12 14:40:07 2019
[INFO] - Looks good, the temp of the Boiler/SHWS-T : 141.42 degreesFahrenheit on Fri Apr 12 14:50:07 2019
[INFO] - Looks good, the temp of the Boiler/SHWS-T : 141.96 degreesFahrenheit on Fri Apr 12 15:00:08 2019
[INFO] - Looks good, the temp of the Boiler/SHWS-T : 141.19 degreesFahrenheit on Fri Apr 12 15:10:08 2019
[INFO] - Looks good, the temp of the Boiler/SHWS-T : 141.51 degreesFahrenheit on Fri Apr 12 15:20:09 2019
[INFO] - Looks good, the temp of the Boiler/SHWS-T : 142.76 degreesFahrenheit on Fri Apr 12 15:30:15 2019
[INFO] - Looks good, the temp of the Boiler/SHWS-T : 142.10 degreesFahrenheit on Fri Apr 12 15:40:15 2019
[INFO] - Looks good, the temp of the Boiler/SHWS-T : 142.66 degreesFahrenheit on Fri Apr 12 15:50:16 2019
[INFO] - Looks good, the temp of the Boiler/SHWS-T : 142.86 degreesFahrenheit on Fri Apr 12 16:00:16 2019
[INFO] - Looks good, the temp of the Boiler/SHWS-T : 141.98 degreesFahrenheit on Fri Apr 12 16:10:16 2019
[INFO] - Looks good, the temp of the Boiler/SHWS-T : 141.67 degreesFahrenheit on Fri Apr 12 16:20:16 2019
[INFO] - Looks good, the temp of the Boiler/SHWS-T : 142.45 degreesFahrenheit on Fri Apr 12 16:30:17 2019
[INFO] - Looks good, the temp of the Boiler/SHWS-T : 143.06 degreesFahrenheit on Fri Apr 12 16:40:17 2019
Traceback (most recent call last):
File "/home/benbartling/anaconda3/lib/python3.6/site-packages/BAC0/core/devices/Points.py", line 112, in value
self.properties.device.properties.address, self.properties.type, str(self.properties.address)))
File "/home/benbartling/anaconda3/lib/python3.6/site-packages/BAC0/core/io/Read.py", line 163, in read
"APDU Abort Reason : {}".format(reason))
BAC0.core.io.IOExceptions.NoResponseFromController: APDU Abort Reason : noResponse
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "interpreter.py", line 20, in <module>
if data > setPoint:
File "/home/benbartling/anaconda3/lib/python3.6/site-packages/BAC0/core/devices/Points.py", line 524, in __gt__
return self.value > other
File "/home/benbartling/anaconda3/lib/python3.6/site-packages/BAC0/core/devices/Points.py", line 116, in value
'Problem reading : {}'.format(self.properties.name))
Exception: Problem reading : SHWS-T
您可以尝试使用 retrying PyPi 包,并根据您的需要修改您的程序。
检查 https://pypi.org/project/retrying/
类似的东西。
@retry(stop_max_attempt_number=3)
def read_from_sensor():
#your code here
pass
@retry(wait_fixed=6000)
def get_sensor_reading():
read_from_sensor()
正如您定义的轮询,您应该不需要阅读逻辑中的要点。尝试使用 ´hws[SHWS-T].lastValue ´
使用点调用会强制在网络上读取,效率不高。 LastValue 将使用该点的历史记录。
(新手 Python 程序员在这里最多..)
我使用模块访问名为 BAC0 的楼宇自动化系统。当我的 Windows 笔记本电脑 运行 通过本地 Wifi LAN 将 BACnet 与楼宇自动化系统通信以检索数据时,该脚本会从我的 Windows 笔记本电脑创建一个楼宇自动化设备。
具体来说,下面的脚本每 120 秒轮询一次热水厂控制器以获取离开温度传感器,然后在 while True 循环中每 600 次更新一次。
import BAC0
import time
#alarm setpoint
setPoint = 140
#connect to device
bacnet = BAC0.lite()
hws = BAC0.device('100:99', 30099, bacnet, poll=120, history_size=10000)
while True:
data = hws['SHWS-T']
time.sleep(600)
if data > setPoint:
good = f'[INFO] - Looks good, the temp of the {data} on {time.ctime()}'
print(good)
else:
bad = f'[INFO] - Looks bad, the temp of the {data} on {time.ctime()}'
print(bad)
print("Here's the coldest last 10 recorded boiler supply temp readings")
print(data.history.nsmallest(n=10, keep='last'))
print("I better get some help!")
无论如何,控制器不响应时不时发生的情况是,然后脚本会停止,因为如果这样......如果我知道如何做就太好了 retry
比如重试 3 次,然后 pass
再等 600 秒再试一次...
我知道下面的说法不正确,但像这样???
try:
if isinstance(Exception: Problem reading : SHWS-T)
# retry function?
retry()
else:
# This is our sensor value
pass
完整追溯:
benbartling@benbartling-HP-ProDesk-600-G1-SFF ~/Desktop/bac0 $ python interpreter.py
2019-04-12 13:39:49,484 - INFO | Starting BAC0 version 0.99.944 (Lite)
2019-04-12 13:39:49,513 - INFO | Using ip : 10.30.4.200
2019-04-12 13:39:49,514 - INFO | Starting app...
2019-04-12 13:39:49,514 - INFO | BAC0 started
2019-04-12 13:39:49,514 - INFO | Registered as Simple BACnet/IP App
2019-04-12 13:39:51,517 - INFO | Changing device state to DeviceDisconnected'>
2019-04-12 13:39:57,867 - INFO | Changing device state to RPMDeviceConnected'>
2019-04-12 13:39:58,306 - INFO | Device 30099:[Boiler] found... building points list
2019-04-12 13:39:59,683 - INFO | Ready!
2019-04-12 13:39:59,688 - INFO | Polling started, values read every 120 seconds
[INFO] - Looks good, the temp of the Boiler/SHWS-T : 141.62 degreesFahrenheit on Fri Apr 12 13:50:05 2019
[INFO] - Looks good, the temp of the Boiler/SHWS-T : 141.78 degreesFahrenheit on Fri Apr 12 14:00:06 2019
[INFO] - Looks good, the temp of the Boiler/SHWS-T : 143.18 degreesFahrenheit on Fri Apr 12 14:10:06 2019
[INFO] - Looks good, the temp of the Boiler/SHWS-T : 141.33 degreesFahrenheit on Fri Apr 12 14:20:06 2019
[INFO] - Looks good, the temp of the Boiler/SHWS-T : 143.15 degreesFahrenheit on Fri Apr 12 14:30:07 2019
[INFO] - Looks good, the temp of the Boiler/SHWS-T : 141.97 degreesFahrenheit on Fri Apr 12 14:40:07 2019
[INFO] - Looks good, the temp of the Boiler/SHWS-T : 141.42 degreesFahrenheit on Fri Apr 12 14:50:07 2019
[INFO] - Looks good, the temp of the Boiler/SHWS-T : 141.96 degreesFahrenheit on Fri Apr 12 15:00:08 2019
[INFO] - Looks good, the temp of the Boiler/SHWS-T : 141.19 degreesFahrenheit on Fri Apr 12 15:10:08 2019
[INFO] - Looks good, the temp of the Boiler/SHWS-T : 141.51 degreesFahrenheit on Fri Apr 12 15:20:09 2019
[INFO] - Looks good, the temp of the Boiler/SHWS-T : 142.76 degreesFahrenheit on Fri Apr 12 15:30:15 2019
[INFO] - Looks good, the temp of the Boiler/SHWS-T : 142.10 degreesFahrenheit on Fri Apr 12 15:40:15 2019
[INFO] - Looks good, the temp of the Boiler/SHWS-T : 142.66 degreesFahrenheit on Fri Apr 12 15:50:16 2019
[INFO] - Looks good, the temp of the Boiler/SHWS-T : 142.86 degreesFahrenheit on Fri Apr 12 16:00:16 2019
[INFO] - Looks good, the temp of the Boiler/SHWS-T : 141.98 degreesFahrenheit on Fri Apr 12 16:10:16 2019
[INFO] - Looks good, the temp of the Boiler/SHWS-T : 141.67 degreesFahrenheit on Fri Apr 12 16:20:16 2019
[INFO] - Looks good, the temp of the Boiler/SHWS-T : 142.45 degreesFahrenheit on Fri Apr 12 16:30:17 2019
[INFO] - Looks good, the temp of the Boiler/SHWS-T : 143.06 degreesFahrenheit on Fri Apr 12 16:40:17 2019
Traceback (most recent call last):
File "/home/benbartling/anaconda3/lib/python3.6/site-packages/BAC0/core/devices/Points.py", line 112, in value
self.properties.device.properties.address, self.properties.type, str(self.properties.address)))
File "/home/benbartling/anaconda3/lib/python3.6/site-packages/BAC0/core/io/Read.py", line 163, in read
"APDU Abort Reason : {}".format(reason))
BAC0.core.io.IOExceptions.NoResponseFromController: APDU Abort Reason : noResponse
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "interpreter.py", line 20, in <module>
if data > setPoint:
File "/home/benbartling/anaconda3/lib/python3.6/site-packages/BAC0/core/devices/Points.py", line 524, in __gt__
return self.value > other
File "/home/benbartling/anaconda3/lib/python3.6/site-packages/BAC0/core/devices/Points.py", line 116, in value
'Problem reading : {}'.format(self.properties.name))
Exception: Problem reading : SHWS-T
您可以尝试使用 retrying PyPi 包,并根据您的需要修改您的程序。 检查 https://pypi.org/project/retrying/
类似的东西。
@retry(stop_max_attempt_number=3)
def read_from_sensor():
#your code here
pass
@retry(wait_fixed=6000)
def get_sensor_reading():
read_from_sensor()
正如您定义的轮询,您应该不需要阅读逻辑中的要点。尝试使用 ´hws[SHWS-T].lastValue ´
使用点调用会强制在网络上读取,效率不高。 LastValue 将使用该点的历史记录。