Setting up BOB on Apex Lite

Go to advance on the outlet your pump is on type in

If Switch1 Open Then OFF

If Switch1 Closed Then ON

Whatever number switch you have you positive wire plugged into that's the Switch number you use.
 
Worked, thanks! Now if I wanted to put in a delay so it could run but not again for 12 hours after shutting off, is that possible? Kindof a failsafe feature
 
Here's what I use for mine. Keeps it from running too long, sends an email if it tries to run longer than it should.

Keep in mind, if you don't have auto-water changes, take off the last couple lines

*ATO
Fallback OFF
Set OFF
If Switch6 CLOSED Then ON
If Outlet limit_ATO = ON Then OFF
Min Time 005:00 Then OFF
Defer 001:00 Then ON
If Outlet Drain_Pump = ON Then OFF
If Outlet NSW_Pump = ON Then OFF

*limit_ATO
Set OFF
If Switch6 CLOSED Then ON
Defer 007:00 Then ON
If Outlet Drain_Pump = ON Then OFF
If Outlet NSW_Pump = ON Then OFF
 
Back
Top