Alarm programming question

Users Who Are Viewing This Thread (Total: 1, Members: 0, Guests: 1)

Js.Aqua.Project

Reef Addict
View Badges
Joined
Apr 29, 2016
Messages
1,740
Reaction score
3,541
Location
Ocala, FL
Rating - 0%
0   0   0
I want my Apex to NOT send alerts when performing Water Changes or Feeding the tank. Right now my ATK triggers the alert for the sensor I've renamed SumpHi any time I enter a feed mode or hit my virtual outlet to perform my water changes.

I read that alerts are prioritized from top to bottom.

So will this work?

Set OFF
If FeedA Then OFF
If FeedB Then Off
If FeedC Then OFF
If FeedD Then OFF
If Output Water_Change = ON Then OFF
If Error ATK_Pump Then ON
If SumpHi CLOSED Then ON
If ATO_Lo OPEN Then ON
If pH < 7.8 Then ON
If Tmp < 76 Then ON
If Tmp > 82 Then ON
 

DLHDesign

Ex-Noob
View Badges
Joined
Jun 7, 2016
Messages
3,259
Reaction score
5,448
Location
Lathrop, CA
Rating - 0%
0   0   0
I read that alerts are prioritized from top to bottom.
It's actually the reverse of this - it's read top-to-bottom, with whatever it ends up with at the end being the answer.

So you'll want:

Set OFF
If Error ATK_Pump Then ON
If SumpHi CLOSED Then ON
If ATO_Lo OPEN Then ON
If pH < 7.8 Then ON
If Tmp < 76 Then ON
If Tmp > 82 Then ON
If FeedA Then OFF
If FeedB Then Off
If FeedC Then OFF
If FeedD Then OFF
If Output Water_Change = ON Then OFF
 

A worm with high fashion and practical utility: Have you ever kept feather dusters in your reef aquarium?

  • I currently have feather dusters in my tank.

    Votes: 64 36.8%
  • Not currently, but I have had feather dusters in my tank in the past.

    Votes: 59 33.9%
  • I have not had feather dusters, but I hope to in the future.

    Votes: 25 14.4%
  • I have no plans to have feather dusters in my tank.

    Votes: 26 14.9%
  • Other.

    Votes: 0 0.0%
Back
Top