Need Help setting my Alert Configuration for High Water ???

Andrew Schubert

Well-Known Member
View Badges
Joined
Jul 27, 2018
Messages
647
Reaction score
321
What state or country do you live in
Illinois
Rating - 0%
0   0   0
I want my alert to go off if my High Water Float is activated. However, I do not want it to alert me if the ReturnPump is currently off (feeding my fish). Here is my current code:

Set OFF
If HWater OPEN Then ON
If FeedA 011 Then OFF
If FeedB 011 Then OFF
If FeedC 011 Then OFF
If FeedD 011 Then OFF
IF Outlet 1-ReturnPump OFF Then OFF

*Problem is as soon as the ReturnPump turns on the water is still above the high water float and the alarm still sounds. I could set a defer method here, but if I understand it correctly that will defer ALL commands. There are times I would want to be alerted immediately (not like a minute from now).

Is there any good way to program this? If not...I guess its just another HUGE flaw with the APEX system :-(.
 
Use a virtual outlet for your return pump with a defer and reference that in your alert code.

[vReturn]
Set OFF
If Outlet 1-ReturnPump ON Then ON
Defer 005:00 Then ON

[Alert]
...
If Outlet vReturn OFF Then OFF

Syntax may not be perfect but you should get the gist
 
As above, use a VO.

[SumpLevelHi]
Set OFF
If HWater OPEN Then ON
If Output 1-ReturnPump = OFF Then OFF
Defer 002:00 Then ON

Then, in your alarm code, remove the text that you have listed in your post (except Set OFF), and add:

If Output SumpLevelHi = ON Then ON

This will send you an alert 2 minutes after the return pump restarts, if the float switch is still open.
It will also wait 2 minutes any time the float switch opens, so to get the alert as soon as possible you should make the delay the shortest that will work.
 

HOW MUCH DOES A FISH’S FEEDING REQUIREMENTS AFFECT YOUR STOCKING DECISIONS?

  • A lot! - I avoid fish that require frequent or specialized feeding

    Votes: 9 25.7%
  • Quite a bit, but an automatic feeder can change my answer

    Votes: 6 17.1%
  • It depends on whether my nutrient export can handle it

    Votes: 5 14.3%
  • It depends on how badly I want the fish

    Votes: 10 28.6%
  • Not much. I’m willing to adjust my routine

    Votes: 9 25.7%
  • Not at all. Feeding demands don’t limit my stocking choices

    Votes: 5 14.3%
  • I usually learn about the demanding feeding schedule after buying the fish!

    Votes: 2 5.7%
  • I haven’t really considered this before

    Votes: 3 8.6%
  • Something else (see my comments in the thread)

    Votes: 1 2.9%
Back
Top
Home
Post thread…
Market
What's new