Alert clearing on rain notification

All about the standard Meteobridge devices based on mobile routers from TP-Link, D-Link, ASUS

Moderator: Mattk

Post Reply
Daali
Fresh Boarder
Fresh Boarder
Posts: 6
Joined: Tue Aug 03, 2021 2:26 am

Alert clearing on rain notification

Post by Daali »

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!
ToTo
Gold Boarder
Gold Boarder
Posts: 243
Joined: Wed Apr 03, 2019 9:24 am
Location: Magdeburg, Germany
Contact:

Re: Alert clearing on rain notification

Post by ToTo »

I used the following commands

Trigger: [rain0rate-act.0:0] > 0
Delete: [rain0rate-act.0:0] == 0
Daali
Fresh Boarder
Fresh Boarder
Posts: 6
Joined: Tue Aug 03, 2021 2:26 am

Re: Alert clearing on rain notification

Post by Daali »

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
ToTo
Gold Boarder
Gold Boarder
Posts: 243
Joined: Wed Apr 03, 2019 9:24 am
Location: Magdeburg, Germany
Contact:

Re: Alert clearing on rain notification

Post by ToTo »

Daali wrote: Fri Jan 07, 2022 9:02 pm In intermittent rains, do you get an alert every time it starts back up?
Yes, a warning always comes when it rains properly, but not at 0.2 mm.
Daali
Fresh Boarder
Fresh Boarder
Posts: 6
Joined: Tue Aug 03, 2021 2:26 am

Re: Alert clearing on rain notification

Post by Daali »

Code: Select all

RAISE: [rainrate-max60] = 0 && [rain0rate-act] > 0 
failed to trigger rain. makes sense now

Code: Select all

RAISE: [rain0rate-act.0:0] > 0
CLEAR: [rain0rate-act.0:0] == 0 
last intermittent rain this triggered 3 times in an hour

Code: Select all

RAISE: [rainrate-max60.0:0] == 0 && [rain0rate-act.0:0] > 0
CLEAR: [rain0rate-act.0:0] == 0
 
trying this now, but this may suffer from the same logic flaw as first attempt.

the ultimate goal would be to narrow down triggers to at most 1x an hour. Any help would be appreciated
Post Reply