AC Jr Programming - Is this possible?

isawill

New member
Hello,

I have a fan that I would like to be on continuously from say 1pm to 10pm. then on for 5 minutes every hour between 10pm and 1 pm.
Is this possible with the AC Jr?
If so, could someone tell me what the program should be?
Thanks
 
You'll have to use a dummy timer to accomplish this. Lets' call it FNO - (short for Fan Off)

FAN%-A01 // actual fan on DC8 outlet
FNO%-P16 // dummy timer

OSC 5/55 ON/OFF Then FAN ON
If Time > 00:00 Then FNO ON
If Time > 13:00 Then FNO OFF
If Time > 22:00 Then FNO ON
If Timer FNO = OFF Then FAN OFF
 
Doh! I need more brain lubricant in a mug this morning ;) Disregard my previous post... I misread it.
 
This should do what you want:

FAN%-A01 // actual fan on DC8 outlet
FNO%-P16 // dummy timer for forcing Fan ON

OSC 005/055 ON/OFF Then FAN ON
If Time > 13:00 Then FNO ON
If Time > 22:00 Then FNO OFF
If Timer FNO = ON Then FAN ON
 
Back
Top