Programing Help Please

alanbates12

New member
This is how my skimmer is programed currently:
Fallback OFF
Set ON
If FeedD 120 Then OFF

I would like when I do FeedD, this is when I clean, then hit cancel on the display, because I'm done, for the skimmer to remain off for like 20 more minuets.

Also in case of power failure for it to remain off if power is turned back on for to to turn back on in 20 min.
 
As you have probably guessed, the additional delay in the Feed command is ignored when canceled. You can achieve the desired result by using a Defer command.

[Skimmer]
Fallback OFF
Set ON
If FeedD 100 Then OFF
Defer 20:00 Then ON

So, once FeedA ends it will delay 100 minutes plus the Defer of 20 minutes. If you cancel FeedA, it will only delay by 20 minutes. I am not sure if the Defer will work when power is restored, I think it will. If it does not, then add the following after the Feed command:

If Power Apex OFF 001 Then OFF

Todd
 
Last edited:
Thanks Todd how bought if I have a power surge. Just don't want the sump to be full of water because the main pump is off and turn back on with the elevated water level. Would like it to stabilize then turn on
 
Sorry, I don't know him.

I am not sure about a power surge. The best solution would be to use a small UPS and 12VDC adapter. That way the base unit would retain power and could detect the loss on the EBx and respond appropriately.

Todd
 
I have a Reef Octopus skimmer that I'd like to turn off every night at 8:30 pm for feeding and have it turned back on at 9:30 pm. I have an Apex Jr and would like to plug it into outlet 4. Can someone please show me a script that will work? I've tried reading the "super duper" guide, but I'm not a technical person. Thanks for all the help
 
I have a Reef Octopus skimmer that I'd like to turn off every night at 8:30 pm for feeding and have it turned back on at 9:30 pm. I have an Apex Jr and would like to plug it into outlet 4. Can someone please show me a script that will work? I've tried reading the "super duper" guide, but I'm not a technical person. Thanks for all the help

Set ON
If Time 20:30 to 21:29 Then OFF
If Power Apex 003 Then OFF

The above will do exactly as you requested. I also added the last line so that there will be a 3-minute delay in starting up the skimmer after a power loss or Apex - this gives the water level in the sump enough to to normalize before the skimmer will start.
 
Hey RussM would this also work for a power out for me

[Skimmer]
Fallback OFF
Set ON
If FeedD 100 Then OFF
Defer 20:00 Then ON
If Power Apex 003 Then OFF
 
Yes, that is what I suggested above. However, the Defer will add a 20 minute delay, so the total would be 23 minutes. To be honest, I find the If Power Apex command to be of limited value. Without power, the Apex cannot operate. The command really detects when power has been restored rather than when it is first lost. The If Power EBx command combined with a small UPS is a much better solution. The UPS does not need to be very large, just enough for power hiccups and short outages.

Todd
 
I understand your point Todd, but If Power Apex is, in some cases, a better way of inducing a startup delay than the more far-reaching Defer.
 
Set ON
If Time 20:30 to 21:29 Then OFF
If Power Apex 003 Then OFF

The above will do exactly as you requested. I also added the last line so that there will be a 3-minute delay in starting up the skimmer after a power loss or Apex - this gives the water level in the sump enough to to normalize before the skimmer will start.

Thanks so much. I'll try this at home tonight.
 
Set ON
If Time 20:30 to 21:29 Then OFF
If Power Apex 003 Then OFF

The above will do exactly as you requested. I also added the last line so that there will be a 3-minute delay in starting up the skimmer after a power loss or Apex - this gives the water level in the sump enough to to normalize before the skimmer will start.

Here's the error message when I hit the Update Outlet button.
\\ Error: On or Off expected after Module name //Error: line 3 - If Power Apex 003 Then OFF
 
Next question. What does all this mean for the light outlet? I copied it straight from the Jr's screen.

Fallback (On/Off) Off On
On time (HH:MM)
Off time (HH:MM)
Shutdown probe (Probe Name)
Device shutdown value (Probe Value)
Hysteresis (MMM:SS)
 
Next question. What does all this mean for the light outlet? I copied it straight from the Jr's screen.
Fallback (On/Off) Off On

Fallback is what an EnergyBar outlet should do if the EnergyBar cannot communicate with the base controller. fallback only works with EB8 & EB4 outlets... it has no effect with other outlets, such as the ones in an Apex Jr.

On time (HH:MM)
Off time (HH:MM)

Should be self-explanatory


Shutdown probe (Probe Name)
Device shutdown value (Probe Value)

Use these is you want the outlet to be turned off if a given probe (such as Temp) reading exceeds the set value.

Hysteresis (MMM:SS)

Use this if you are controlling Metal Halide lighting. MH lamps require a cool-down period after they are shut off before they will fire again. Some MH lamps only need 7-10 minutes, others may need as much as 30 minutes. This isn't needed for other lighting types.

I personally don't use the wizards. You will gain a better understanding of the Apex programming and be better able to exploit the power of the Apex if you use Advanced control type for outlets.
 
Back
Top