Programming AC3 Time of day overide

200mfromocean

New member
Here is my code:
If Temp > 78.4 Then FAN ON
If Temp < 78.3 Then FAN OFF
Max Change 010 M Then FAN OFF
If time > 23:00 Then fan off \\ Error: Timer name not found
If time < 09:00 Then fan on if temp > 78.4 \\ Error: Time statements require '>' comparison
If Temp < 78.1 Then HET ON
If Temp > 78.2 Then HET OFF

After the metal halides turn off around 10:00Pm there is no need to keep the fan on to lower the temp. The temp will lower by itself and I do not care to hear the fan running at midnight.
 
Since you trigger the fan off the halides why not use:

If Timer MHD = Off Then FAN OFF

That will turn off the fan when the MHD turns off.

Replace MHD with the name you use for your halides.
 
Back
Top