hi all
i am getting a controler this week ,but trying to wright a programm now..
i have zeovit reactor wich goes on/ff every two hours how can i control this option...
Create a timer name (setup->timer setup->timer names) like ZEO on address A9 (make sure it is unique).
Add a program statement (setup->timer setup->timer program) like this:
OSC 120/120 Then ZEO ON
The timer zeo will turn on for 2 hours, then off 2 hours and repeat.
The osc 120/120 statement is the oscillate command. The first number indicates the number of minutes in the first state, and the second number indicates the number of minutes in the second state. The first state is specified in the 'Then ZEO ON'.
The values in the osc statement are limited to 240 minutes. So if on for 15 minutes and off for 4 hours is acceptable then you would use:
OSC 015/240 Then PMP ON
If 6 hours is absolutely required then you would have to use time statements like:
If Time > 00:00 Then PMP ON
If Time > 00:15 Then PMP OFF
If Time > 06:00 Then PMP ON
If Time > 06:15 Then PMP OFF
If Time > 12:00 Then PMP ON
If Time > 12:15 Then PMP OFF
If Time > 18:00 Then PMP ON
If Time > 18:15 Then PMP OFF
curt,
can i controll fans by temp and by time ot its impossable..
i have to control either by temp ot time..
right now i have them by time,but let say during the summer even at nite temp goes hi ,and i want fan goes on...
It shipped on the 7th; you should get it on the 14th.
Yes, you can control by both time & temp. If you want to have the fans on when the lights are on, and also if the temp gets too high then use something like this:
If Time > 8:00 Then FAN ON
If Time > 20:00 Then FAN OFF
If Temp > 85.0 Then FAN ON
Max Change 010 M Then FAN OFF
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.