AC JR question

northbay-reefer

Active member
I am currently using one of the channel to controll my hood fans, and the command line that I used is:

If LT1 ON Then Fan ON
If Temp < 78.00 Then FAN Off

But what I notice is the fan will cycle off and on when the temp is 78.00 Is their a way to keep this from happening ? TIA
 
Add a max change statement. Use:

If Timer LT1 = ON Then Fan ON
If Temp < 78.0 Then FAN OFF
Max Change 030 M Then FAN OFF

Curt
 
Back
Top