acjr command help

billy71

Member
I have a acjr and im trying to create a left to right, right to left osc command. I have it set the way it is in the manual but the only thing different is i have them going off when lights go off. But when the lights go on again the next day then both pumps turn on and off at the same time. What am i missing.
 
I'm assuming you have 2 OSC statements... does one end with ON and the other with OFF?

OSC 03/03 ON/OFF Then PHL ON
OSC 03/03 ON/OFF Then PHR OFF

If not, make it like the above example


You can also take a different approach:

If Time > 09:00 Then LIT ON
If Time > 17:00 Then LIT OFF
OSC 05/05 ON/OFF Then PHL ON
If Timer PHL = ON Then PHR OFF
If Timer PHL = OFF Then PHR ON
If Timer LIT = OFF Then PHL OFF
If Timer LIT = OFF Then PHR OFF

The right powerhead will always be in the opposite state of the the left powerhead, except both powerheads will off whenever the light is off
 
The second approach I listed is to illustrate the concept of an alternate to using 2 OSC statements. Merge that into your existing programming (without seeing the whole program, I can't be more specific)
 
Back
Top