Quick Question "If Time" Seconds?

Bzar

New member
Been through the manual and searching RC for an answer to this and can't seems to find one. Situation is this...

I want to run a pump for 35 seconds at 6:00pm. What would be my program options for making this work if any? Does "If Time" have a seconds ability? it only seems to have hours/mins.

thanks.
 
You will need to use OSC command; if time doesn't have sum minute control. You can use OSC to control the ON time and If Time to control when the OSC is allowed to turn the outlet on, that is the easiest method I can think of to do what you want.
 
You can use the Defer command to 'deduct' time.

Set OFF
If Time 6:00 to 6:01 Then ON
Defer 1:25 Then ON

The Time statement actually creates a two minute window, this is the smallest available due to the way it is evaluated. Then the Defer waits before allowing the outlet to turn ON at 6:01:25 and running until 6:02.

Todd
 
Back
Top