Skip to content

Commit 782ded7

Browse files
committed
Changed count_threshold to 10
The old threshold (50) was too high for stations with short archive intervals.
1 parent cab12d3 commit 782ded7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bin/examples/lowBattery.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
1313
[Alarm]
1414
time_wait = 3600
15-
count_threshold = 50
15+
count_threshold = 10
1616
smtp_host = smtp.mymailserver.com
1717
smtp_user = myusername
1818
smtp_password = mypassword
@@ -86,7 +86,7 @@ def __init__(self, engine, config_dict):
8686
# If a critical option is missing, an exception will be thrown and
8787
# the alarm will not be set.
8888
self.time_wait = int(config_dict['Alarm'].get('time_wait', 3600))
89-
self.count_threshold = int(config_dict['Alarm'].get('count_threshold', 50))
89+
self.count_threshold = int(config_dict['Alarm'].get('count_threshold', 10))
9090
self.smtp_host = config_dict['Alarm']['smtp_host']
9191
self.smtp_user = config_dict['Alarm'].get('smtp_user')
9292
self.smtp_password = config_dict['Alarm'].get('smtp_password')

0 commit comments

Comments
 (0)