Was thinking about using this code to turn off skimmer when float switch in cup is triggered
if(ReefAngel.HighATO.IsActive())
{
ReefAngel.Relay.Off(Port2);
}
else
{
ReefAngel.Relay.On(Port2);
}
Only problem I have is if I pull off cup to clean and empty will it turn that relay back on?
If so how can I code it to keep it off till after my cup is cleaned?
Skimmer stop on high ato
-
pandimus
- Posts: 213
- Joined: Mon Apr 01, 2013 7:58 pm
- lnevo
- Posts: 5422
- Joined: Fri Jul 20, 2012 9:42 am
- lnevo
- Posts: 5422
- Joined: Fri Jul 20, 2012 9:42 am
Re: Skimmer stop on high ato
You may be able to MaskOff(Port2); if your on the dev code and if I added the function
-
pandimus
- Posts: 213
- Joined: Mon Apr 01, 2013 7:58 pm
Re: Skimmer stop on high ato
Thanks.. I'll try override first
- lnevo
- Posts: 5422
- Joined: Fri Jul 20, 2012 9:42 am
Re: Skimmer stop on high ato
Good plan. I still need to add those functions 