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,779
Reaction score
3,590
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
 

Reefing threads: Do you wear gear from reef brands?

  • I wear reef gear everywhere.

    Votes: 33 16.1%
  • I wear reef gear primarily at fish events and my LFS.

    Votes: 11 5.4%
  • I wear reef gear primarily for water changes and tank maintenance.

    Votes: 1 0.5%
  • I wear reef gear primarily to relax where I live.

    Votes: 27 13.2%
  • I don’t wear gear from reef brands.

    Votes: 119 58.0%
  • Other.

    Votes: 14 6.8%
Back
Top