Canopy fan and timers

The Saltman

New member
Hello,

I currently have my Aquacontroller 3 program setup to kick on my canopy fans when temperature reaches certain conditions. However, I want the canopy fans to be on all the time when my Metal Halides are running regardless of temperature. I have tried to use the statement

If Timer MH1 =ON then Fan On

However, since the fan is still set for a condition this still will not happen. What kind of coding can I do?
 
What you want to do is set a default (say for off) and then many conditions that would turn the fan on, like this:

If Time > 00:00 Then FAN Off

If Timer MH1 = ON then FAN On
If Temp > 80.1 Then FAN ON

If none of the on conditions are met then the fan will be off.
 
Back
Top