Situation: I would like to receive an alert at the start of rainfall at most 1 time an hour
Background: I am using [rain0rate-act] > 0 to trigger and [rain0rate-act] = 0 to clear
Problem: This works exactly as intended, except in intermittent rains, I get lots of alerts.
What is the best practice to use in the clear line for only receiving the alert 1 time in an hour? Thank you in advance!
Alert clearing on rain notification
Moderator: Mattk
Re: Alert clearing on rain notification
I used the following commands
Trigger: [rain0rate-act.0:0] > 0
Delete: [rain0rate-act.0:0] == 0
Trigger: [rain0rate-act.0:0] > 0
Delete: [rain0rate-act.0:0] == 0
Re: Alert clearing on rain notification
In intermittent rains, do you get an alert every time it starts back up?
I'm trying this currently in the raise:, but no rain in the forecast!
RAISE: [rainrate-max60] = 0 && [rain0rate-act] > 0
I'm trying this currently in the raise:, but no rain in the forecast!
RAISE: [rainrate-max60] = 0 && [rain0rate-act] > 0
Re: Alert clearing on rain notification
Yes, a warning always comes when it rains properly, but not at 0.2 mm.Daali wrote: Fri Jan 07, 2022 9:02 pm In intermittent rains, do you get an alert every time it starts back up?
Re: Alert clearing on rain notification
Code: Select all
RAISE: [rainrate-max60] = 0 && [rain0rate-act] > 0
Code: Select all
RAISE: [rain0rate-act.0:0] > 0
CLEAR: [rain0rate-act.0:0] == 0
Code: Select all
RAISE: [rainrate-max60.0:0] == 0 && [rain0rate-act.0:0] > 0
CLEAR: [rain0rate-act.0:0] == 0
the ultimate goal would be to narrow down triggers to at most 1x an hour. Any help would be appreciated