PDA

View Full Version : Wavemaker Programming


RWillieK
05/04/2007, 01:05 PM
I am struggling a little to program my power head timers the way I would like.

Here is the code as I would LIKE for it to run.....maybe you guys can help me get it into correct form.....

If Time > 00:00 Then Osc 005/005 Then Ph1 On
If Time > 00:00 Then Osc 005/005 Then Ph2 Off

If Time > 06:30 Then Osc 005/002 Then Ph1 On
If Time > 6:30 Then Rnd (time doesn't matter, except overlap - aka no pumps on - should be kept to a minumum)

If Time > 19:30 Then OSC 005/005 Then Ph1 On
If Time > 19:30 Then OSC 005/005 Then Ph2 Off


This would create a night mode starting at 19:30 to 6:30.
Of course these commands aren't availabe on the AC Jr, at least by entering on the screen. Is the AC Jr able to do this via Aquanotes? (yes I have the serial upgrade)

Thanks!

Robbie

RWillieK
05/05/2007, 05:04 AM
No One?

LOTUS50GOD
05/07/2007, 08:33 AM
Yo have to split up your statements. You cannot have 2 'thens' on one line

If Time > 00:00 Then Ph1 On
If Time > 00:00 Then Ph2 On
If Ph1 On Then Osc 005/005
If Ph1 On Then Ph2 Off
If Ph2 On Then Osc 005/005

try something like this.. I have not tested this code..