Page 1 of 1

Water level sensor problems

Posted: Tue Jun 21, 2016 8:48 pm
by Reeflife916
Hi all, I've been using my reef angel for a few months now, which I am very impressed with.
One problem I have been experiencing is with using my water level for my ATO. I get random ATO timeouts, and it will occur when the ATO pump has not ran for the timeout period. I also get the red led to light up, and the ATO will still function even though its lit. It seems to be completly random, sometimes it will trip in a half a day, sometimes it will be fine for 3 or more days. Does anyone have any ideas?

Re: Water level sensor problems

Posted: Tue Jun 21, 2016 9:11 pm
by lnevo
I personally feel there is something wrong with the timeout code. I have and still have similar issues using the waterlevel ato. I have a 60 minute timeout as it's tied to my RO/DI and I've had to put code to clear the timeout the first three minutes of the routine. I've started it manually as well and it has timed out immediately.

Re: Water level sensor problems

Posted: Fri Jun 24, 2016 12:10 pm
by lnevo
Bump

Re: Water level sensor problems

Posted: Fri Jun 24, 2016 6:33 pm
by rimai

Re: Water level sensor problems

Posted: Wed Jun 29, 2016 5:22 am
by Reeflife916
Ok I will give this a shot.
Forgive me for being a complete rookie at programming, but if I'm using the wizard to generate my code, where would I add the change that you suggested? I'm guessing inside of the // for custom code , correct?

Re: Water level sensor problems

Posted: Mon Dec 19, 2016 2:27 am
by smellsfishy
I'd like to comment on this. I recently had a water level sensor go nuts on me and had to get it replaced. The disturbing part was that even though the ATO Timeout was triggered, if the water level (or in my case a bad water level reading) exceeded the High%, as soon as the water level dropped back down below my Low%, the ATO pump would kick on again. With my sensor bouncing all over the place, this caused my ATO pump to turn on repeatedly, despite the ATO Timeout being set.

I also deal with the random ATO timeouts, the timeout seems to just trigger and turn the status light red, even though the pump hasn't even run. Sometimes it happens a few times a day, sometimes its just a few times a week. Not sure if the two issues are related?

Re: Water level sensor problems

Posted: Mon Dec 19, 2016 11:03 am
by rimai
I think we will just have to redo the entire ato class.

Re: Water level sensor problems

Posted: Mon Dec 26, 2016 5:27 am
by Smotz
I went back to this 'coz 'WaterLevelATO' just wasn't working for me. This has been error free for me.

Code: Select all

   
// Main Top Off
//   ReefAngel.WaterLevelATO(1,Topoff,15,85,95);  

  if ( ReefAngel.WaterLevel.GetLevel(1) <=85 ) ReefAngel.Relay.On (Topoff);
  if ( ReefAngel.WaterLevel.GetLevel(1) >=95 ) ReefAngel.Relay.Off (Topoff);
Happy Holidays!