Hi,
I just wanted some advise on how people have setup a skimmer container with a float switch so if it triggers i can turn port 2 off until the switch is off again? any suggestions please?
To explain further i have a 10 litre container that the skimmer dumps into and i just want it to switch the skimmer off if the float is reached. Yes i have have it over flow because the skimmer just decides to go insane and i run a fairly wet skim.
Thanks
Tony
Advice needed to stop a skimmer in the event of overflow
-
Topcat
- Posts: 18
- Joined: Sat Feb 02, 2013 8:03 pm
-
Ademster
- Posts: 142
- Joined: Tue Aug 14, 2012 1:11 pm
Re: Advice needed to stop a skimmer in the event of overflow
this is how I had mine set up.
Code: Select all
if(ReefAngel.HighATO.IsActive())
{
ReefAngel.Relay.Off(Port2);
}
else
{
ReefAngel.Relay.On(Port2);
}Adam
58 Gal

58 Gal
-
Topcat
- Posts: 18
- Joined: Sat Feb 02, 2013 8:03 pm
Re: Advice needed to stop a skimmer in the event of overflow
This worked a treat thank you, but if I still wanted the port controlled via a timer as in off between 22 and 8. With this programming it is not switching off.
Any ideas?
Thanks
Any ideas?
Thanks
- lnevo
- Posts: 5422
- Joined: Fri Jul 20, 2012 9:42 am
Re: Advice needed to stop a skimmer in the event of overflow
Try this:
Code: Select all
if(ReefAngel.HighATO.IsActive())
{
ReefAngel.Relay.Off(Port2);
}
else
{
if ((hour()<8) || (hour()>=22))
{
ReefAngel.Relay.On(Port2);
}
}