dual ATO's

Do you have a question on how to do something.
Ask in here.
Post Reply
User avatar
jsclownfish
Posts: 378
Joined: Mon Oct 24, 2011 7:52 pm
Location: Saint Louis

dual ATO's

Post by jsclownfish »

I want to fit two small reservoirs under my stand with separate pumps so I don't have to add fill the top off tanks as often. I have two of float switches installed to determine which reservoir is full. Will it work OK if I have two ATO functions like this?

Code: Select all

  
void CheckLevels()
{
  //Overflow blocked alarm & main pump shut-off, Reservoir 
  if (Overflow == 1) ReefAngel.Relay.Off(Mainpump);
  else ReefAngel.Relay.On(Mainpump);
  if (ReservoirA == 0) 
  {
    ReefAngel.StandardATO(ATOpump);
  }
  else 
  {
    ReefAngel.Relay.Off(ATOpump);
    if (ReservoirB == 0) ReefAngel.StandardATO(ATOpump2);
    else ReefAngel.Relay.Off(ATOpump2);
  }
}
  
rimai
Posts: 12881
Joined: Fri Mar 18, 2011 6:47 pm

Re: dual ATO's

Post by rimai »

I don't see why it wouldn't work :)
Roberto.
Post Reply