Page 1 of 1

Another ATO question - single ato + backup

Posted: Mon Apr 01, 2013 8:24 pm
by neuro
Hi all, I apologize for another ATO question, but I swear this one should be easy:

- I want to set the ATO to single, using ATO Low to trigger the pump to feed the water to top off my sump.
- I want to set the ATO high as a backup switch, so if the first ATO low fails, the second will stop any overflow from happening.

Can anyone see an issue with this?

Re: Another ATO question - single ato + backup

Posted: Tue Apr 02, 2013 9:17 pm
by neuro
Anyone help with code?

Re: Another ATO question - single ato + backup

Posted: Wed Apr 03, 2013 8:58 pm
by duck
this is what im using with two float switches, a 12v solenoid/valve and a wall wart.

Code: Select all

//global

#define ATO 8

//inside void loop

//ATO Low Activation with High Safety (Port 8)
    if (ReefAngel.HighATO.IsActive()) ReefAngel.SingleATOLow(ATO);
      else ReefAngel.Relay.Off(ATO);