Alert timing question.

southerntnreefer

Valuable Member
View Badges
Joined
Feb 19, 2018
Messages
2,214
Reaction score
1,542
Location
Southern Middle TN
Rating - 0%
0   0   0
Hey all, I setup my breakout box last week. I have a float in my ato resivoir amongst other things. It alerts when low. My question is, can I have it alert once every 24 hours vs every hour? When it's "low" I have a day or 2 before I actually have to fill it. ( No I can't put the switch any lower.) If not no biggie I'll either fill it early at ignore until it's time.
 
I think you could put a DEFER command in the program to delay the alarm for 24 hours but @SuncrestReef could probably confirm how to do it.

Like If ATO Res low then ON
Defer xxx:xx in minutes
 
The following code would give you an alert every day at noon. The drawback to this approach is that you won’t get the alert at the moment the switch detects the low water. For example, if the switch changes at 1:00pm, you wouldn’t get the first alert for 23 hours.

[Alert_ATOres]
OSC 720:00/001:00/719:00 Then ON
If ATOres CLOSED Then OFF

[EmailAlm]
Set OFF
If Output Alert_ATOres = ON Then ON

Another approach is a one-time alarm:

[Alert_ATOres]
Set OFF
If ATOres OPEN Then ON
When On > 010:00 Then OFF

I described this method in my Apex Alarm Programming tutorial:

 
The following code would give you an alert every day at noon. The drawback to this approach is that you won’t get the alert at the moment the switch detects the low water. For example, if the switch changes at 1:00pm, you wouldn’t get the first alert for 23 hours.

[Alert_ATOres]
OSC 720:00/001:00/719:00 Then ON
If ATOres CLOSED Then OFF

[EmailAlm]
Set OFF
If Output Alert_ATOres = ON Then ON

Another approach is a one-time alarm:

[Alert_ATOres]
Set OFF
If ATOres OPEN Then ON
When On > 010:00 Then OFF

I described this method in my Apex Alarm Programming tutorial:

Ah yes I'd still want the initial alarm and then again on 14 hours. No big deal I'll just learn to roll it early I guess LOL.
 

IF YOU HAD TO TAKE A REEFING EXAM, WOULD YOU PASS?

  • Yes!

    Votes: 32 45.7%
  • Not yet, but I have one that I want to buy in mind!

    Votes: 9 12.9%
  • No.

    Votes: 26 37.1%
  • Other (please explain).

    Votes: 3 4.3%

New Posts

Back
Top