Hey all, just sharing in case someone is interested...
I used to run a noisy dual head peristaltic pump for water changes. The tubing went out so I decided to try something different.
Changed over to drain/refill method with APEX. It works well so far, although I have trust issues and only schedule them to run when I am here.
Caveat emptor, you have to know APEX pretty well and more importantly test out automation and observe! Don't go and hook this up right before a vacation or something silly like that
Requires:
APEX
ATO Float wired to apex
Optional - Sump High float wired to apex (emergency)
NSW Feed pump in apex outlet
SW Drain pump in same area as ATO floats and in apex outlet
That's it.
Here is the programming, highly leveraged from APEX forums
DRAIN_PUMP
Fallback OFF
Set OFF
# or whatever time you want to run it... Key is it has to run for at least two minutes due to Time command or you have to add a delay
If Time 16:22 to 16:23 Then ON
ATOSW_3_2
If Outlet SW_ATOLO5152 = OFF Then OFF
# This line turns it on, it will not turn off again unless one of the OFF conditions is met
# If you put this line first, the delay and the fact that the ATO does not go low right away
# can result in this outlet never turning on
If Outlet DRAIN_PUMP = ON Then ON
If Outlet SW_SumpHi_2 = ON Then OFF
If FeedA 000 Then OFF
If Power EB8_4 Off 000 Then OFF
If Condx5 > 36.0 Then OFF
# This line is tied to the time command in the drain pump
Defer 001:59 Then ON
Be careful not to create siphons. For example, the drain pump needs to pump up hill and have an air break or you will empty your sump.
Same deal on the NSW pump
I used to run a noisy dual head peristaltic pump for water changes. The tubing went out so I decided to try something different.
Changed over to drain/refill method with APEX. It works well so far, although I have trust issues and only schedule them to run when I am here.
Caveat emptor, you have to know APEX pretty well and more importantly test out automation and observe! Don't go and hook this up right before a vacation or something silly like that

Requires:
APEX
ATO Float wired to apex
Optional - Sump High float wired to apex (emergency)
NSW Feed pump in apex outlet
SW Drain pump in same area as ATO floats and in apex outlet
That's it.
Here is the programming, highly leveraged from APEX forums
DRAIN_PUMP
Fallback OFF
Set OFF
# or whatever time you want to run it... Key is it has to run for at least two minutes due to Time command or you have to add a delay
If Time 16:22 to 16:23 Then ON
ATOSW_3_2
If Outlet SW_ATOLO5152 = OFF Then OFF
# This line turns it on, it will not turn off again unless one of the OFF conditions is met
# If you put this line first, the delay and the fact that the ATO does not go low right away
# can result in this outlet never turning on
If Outlet DRAIN_PUMP = ON Then ON
If Outlet SW_SumpHi_2 = ON Then OFF
If FeedA 000 Then OFF
If Power EB8_4 Off 000 Then OFF
If Condx5 > 36.0 Then OFF
# This line is tied to the time command in the drain pump
Defer 001:59 Then ON
Be careful not to create siphons. For example, the drain pump needs to pump up hill and have an air break or you will empty your sump.
Same deal on the NSW pump


