Apex ato programming help

  • Thread starter Thread starter SS-Ride
  • Start date Start date
  • Tagged users None

SS-Ride

Active Member
View Badges
Joined
Nov 3, 2019
Messages
102
Reaction score
61
Rating - 0%
0   0   0
So after the 3rd or 4th time running my Fw reservoir dry, I finally burned up the pmup...laziness, I had an extra optical sensor I could have hooked up. So now I’ve gotten one of my old little eheim pumps set up plugged into and outlet on the eb32. Question 1) when I use the ato programming for this outlet, I have to set the high level and low level sensors (lowlv & highlv) Everytime I adjust which sensors the apex should be looking for and send it to them module to save it saves...the second I go to the dashboard and back it reverts to some seemingly default switches (highlv & sw2). How do I stop this.
Secondly, once I get it set up how would I add the programming to have the ato pump shut off if the delay reservoir runs dry? Thanks

F4DBB971-F488-41EE-BE07-AB6F956B115F.png CE52EC1C-E985-49EA-B9D8-CB9A25E42539.png
 
I don’t use the programming wizard, but here’s the programming for my ATO pump. I have 2 optical sensors in my sump - the regular one in the return chamber (’SmpLow’) and an upper one that serves as a backup if the lower one fails (SumpHi). There’s also a sensor in the RODI reservoir (RODI_L).

Fallback OFF
Set OFF
If SmpLow OPEN Then ON
If SumpHi CLOSED Then OFF
If RODI_L OPEN Then OFF
When On > 010:00 Then OFF
Defer 000:10 Then ON
Defer 000:04 Then OFF
Min Time 030:00 Then OFF

Fallback - sets the default state (Off) if the connection is lost with the apex brain.
Set - this sets the outlet off as the starting condition. If nothing else in the program is true, the outlet will be off.
SmpLow - if the water falls below this sensor the outlet turns on
SumpHi - if the water is above this sensor, it turns off. Apex evaluates (most) statements in order, so having this statement after the SmpLow statement means it takes priority.
RODI_L - if the water level is below this sensor in the RODI reservoir the pump turns off
When ON - if the pump is running for more than 10 minutes Apex will set an error code and switch the outlet from ‘auto’ to ‘off.’ It will not run again until you manually turn it on. (This is the statement that would have saved your PMUP!)
Defer 000:10 Then ON - This tells the Apex to wait at least 10 seconds before turning the ATO pump on and reduces the effects of splashing water levels. If the water level dips slightly for a second and then goes back up over the sensor the pump won’t turn on.
Defer 000:04 Then OFF - this does the same thing in reverse. It essentially makes the pump run for a minimum of 4 seconds.
Min Time 030:00 then OFF - read this as ‘minimum off time.’ After the pump has been on it has to be off for a minimum of 30 minutes. This reduces repeated/rapid cycling of the pump.

Note - this is for the apex optical sensors. If you’re using float sensors, make sure the open/closed states correspond appropriately
- like I said above, Apex evaluates ‘IF’ statements in order, so the order of the SmpLow statement and the SumpHi statement matters. The order of the ‘Defer,’ ‘Min Time’ and ‘When’ statements doesn’t matter.
 

IF YOU HAD TO TAKE A REEFING EXAM, WOULD YOU PASS?

  • Yes!

    Votes: 32 45.7%
  • Not yet, but I have one that I want to buy in mind!

    Votes: 9 12.9%
  • No.

    Votes: 26 37.1%
  • Other (please explain).

    Votes: 3 4.3%

New Posts

Back
Top