PDA

View Full Version : ATO question?


steved350
04/10/2012, 07:54 PM
For the life of me I can not figure out how to get the APEX to send me an alarm if my make up pump has been running for longer than 10 minutes. Can anyone through me a bone or send me to a location where I can look it up.

Thanks
Steve

This is what I have so far:

Fallback OFF
Set OFF
If Switch1 CLOSED Then ON
Min Time 010:00 Then OFF

rite_eh
04/10/2012, 08:23 PM
You could do this by having a virtual outlet set to the state of the ATO outlet and have it defer for 10 minutes before changing from OFF to ON. Then in your EmailAlarm outlet you would just test the condition of the virtual outlet:

[V-ATOAlarm]
Set OFF
If Outlet PumpATO = ON Then ON
Defer 010:00 Then ON


[EmailAlarm]
If Outlet V-ATOAlarm = ON Then ON

RussM
04/10/2012, 08:23 PM
Use a virtual outlet. Call it ATO_OnTooLong or whatever you want.Set OFF
If Outlet ATO_Pump = ON Then ON
Defer 10:00 Then ON
Then, in the email alarm outlet, add:If Outlet ATO_OnTooLong = ON Then ON

RussM
04/10/2012, 08:24 PM
Darn! 30 seconds too slow... :p

rite_eh
04/10/2012, 08:28 PM
Lol, well it looks like the code has been double checked at least :)