Alarm if sensor not triggered for XX hours?

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

lmm1967

Well-Known Member
View Badges
Joined
Sep 12, 2017
Messages
563
Reaction score
848
Location
North Georgia
Rating - 0%
0   0   0
I'd like to get an alarm or alert if a sensor (ATO Optical sensor in this case) has not been triggered or changed for more than 6 hours.

Reason:

In the past week I've had my ATO optical sensor not change states when it was out of water. This caused my ATO to never kick on and run my sump lower than I prefer. Twice this has happened and I'll do my best to address the issue - but I'd really like an earlier warning that what i have now.

So what I'd like is a safety net warning alerting me if the ATO pump has not run in the previous 6 hours - OR that the sensor has not been in an Open state for more than 6 hours.
 

SuncrestReef

That Apex guy
View Badges
Joined
Jan 18, 2018
Messages
4,214
Reaction score
9,229
Location
Oregon
Rating - 0%
0   0   0
Here’s one way to do it using virtual outputs as a timer:

[SensorClosed]
Set OFF
If ATK_LO CLOSED Then ON
Defer 360:00 Then ON

[ATO_Pump_Off]
Set OFF
If Output PumpName = OFF Then ON
Defer 360:00 Then ON

[EmailAlm]
Set OFF
If Output SensorClosed = ON Then ON
If Output ATO_Pump_Off = ON Then ON

If you’re not familiar with virtual outputs, see my tutorial:
 

Managing real reef risks: Do you pay attention to the dangers in your tank?

  • I pay a lot of attention to reef risks.

    Votes: 95 44.2%
  • I pay a bit of attention to reef risks.

    Votes: 72 33.5%
  • I pay minimal attention to reef risks.

    Votes: 34 15.8%
  • I pay no attention to reef risks.

    Votes: 12 5.6%
  • Other.

    Votes: 2 0.9%
Back
Top