PDA

View Full Version : Night/Day Programming


sevise
11/26/2005, 09:36 PM
Is it possible to have a day/night program on the Jr.? For example can I combine RND with IF Time?


I'd like the end result to have 3 powerheads on RND 3/3 during the day then at night have 2 of them OSC 1/1 opposite eachother?

clp
11/29/2005, 02:41 PM
A bit ugly but this should do it: RN1, RN2, OS1, and OS2 just intermdiate timer names and don't need to necessarily point to real physical outlet. PH1, PH2, and PH3 are the 3 power heads.

If Time > 8:00 Then DAY ON
If Time > 20:00 Then DAY OFF
RND 003/003 Then RN1 ON
If Timer DAY = OFF Then RN1 OFF
RND 003/003 Then RN2 ON
If Timer DAY = OFF Then RN2 OFF
RND 003/003 Then PH3 ON
If Timer DAY = OFF Then PH3 OFF
OSC 001/001 Then OS1 ON
If Timer DAY = ON Then OS1 OFF
OSC 001/001 Then OS2 OFF
If Timer DAY = OFF Then OS2 OFF
If Time > 00:00 Then PH1 OFF
If Timer OS1 = ON Then PH1 ON
If Timer RN1 = ON Then PH1 ON
If Time > 00:00 Then PH2 OFF
If Timer OS2= ON Then PH2 ON
If Timer RN2 = ON Then PH2 ON

Curt