Hi all,
I am trying to setup my ato float switch to turn off my skimmer (on port 4) if the skimmate collection bucket fills up.
I dont think I care if it uses the high or low ato port to get this to work
I have the older RA + controller.
I have tried addding the following but it seems to do nothing.
ReefAngel.Relay.Set( Port4,ReefAngel.HighATO.IsActive() );
I also tried the following
if (!ReefAngel.HighATO.IsActive()) ReefAngel.Relay.Off(Port4); // Turn Skimmer off if Return is off and water level increases in sump
ReefAngel.Relay.Set(Port4,ReefAngel.LowATO.IsActive()); // Turn Skimmer on if Return is on and water level in the sump is norma
//and this
if (ReefAngel.LowATO.IsActive()) ReefAngel.Relay.On(Port4);
else ReefAngel.Relay.Override(Port4, 0);
but port stay on not matter what
Any help would be appreciated.
thanks
Andy
Using ATO to turn off skimmer
Re: Using ATO to turn off skimmer
I also tried the following
if(ReefAngel.HighATO.IsActive())
{
ReefAngel.Relay.Off(Port4);
}
else
{
ReefAngel.Relay.On(Port4);
}
I can see in the portal that the ATO goes active/inactive if i move the float so it seems the RA knows the staus is changing but nothing happens.
if(ReefAngel.HighATO.IsActive())
{
ReefAngel.Relay.Off(Port4);
}
else
{
ReefAngel.Relay.On(Port4);
}
I can see in the portal that the ATO goes active/inactive if i move the float so it seems the RA knows the staus is changing but nothing happens.
Re: Using ATO to turn off skimmer
bit of a doh moment, i had "ReefAngel.Relay.On( Port4 )" in my code which i guess overode the ato port.