Apex water change program.

2002RamAir

New member
Hello all
I just got finished setting up my sump room and was wondering if there is a way to program an apex outlet to come on once a week for 10 hours? I tried searching and could not find any info. Thanks for the help.
 
Something like this should work the way you intend. I haven't made something like this, but in my head, it seems like it'd work out. It'll run the pump from midnight to 10AM every tuesday.

[Pump Outlet]
Fallback OFF
Set OFF
If DoW --T---- Then HoursVO

[HoursVO] - Virtual Outlet
Set OFF
Fallback OFF
If Time 00:00 to 10:00 Then On
 
Something like this should work the way you intend. I haven't made something like this, but in my head, it seems like it'd work out. It'll run the pump from midnight to 10AM every tuesday.

[Pump Outlet]
Fallback OFF
Set OFF
If DoW --T---- Then HoursVO

[HoursVO] - Virtual Outlet
Set OFF
Fallback OFF
If Time 00:00 to 10:00 Then On

I still can not get this to work every way that I have tried. The outlet is requiring an on/off command for the DoW line. Anyone have any other ideas?
 
hmm, odd they don't let you use virtual outlets. Tested a new program, this one seems to work:

Fallback OFF
Set ON
If DoW -MTWTFS Then OFF
If Time 12:04 to 12:02 Then OFF

so for the day of the week you want the pump to run, mark it as '-'. And for the time, set it like this. The pump in this instance will run from 12:02 - 12:04.
 
hmm, odd they don't let you use virtual outlets. Tested a new program, this one seems to work:

Fallback OFF
Set ON
If DoW -MTWTFS Then OFF
If Time 12:04 to 12:02 Then OFF

so for the day of the week you want the pump to run, mark it as '-'. And for the time, set it like this. The pump in this instance will run from 12:02 - 12:04.


So for say an 8 hour time frame I would want Time 20:00 to 12:00 Then off?
 
Back
Top