Programming question - lower and upper limits

Armando

Premium Member
I don't want the fan to switch on and off too quick but i also don't want wide temp swings.

Will this be OK:

If Temp > 79.5 Then FAN ON
If Temp < 79.0 Then FAN OFF
 
Here is how I control mine.

If Temp > 79.6 Then FAN ON
If Temp < 79.5 Then FAN OFF
Max Change 010 M Then FAN OFF

You can use the Max change command to eliminate rapid on/off cycling.
 
mmmm it didn't work. I entered:

If Temp > 79.9 Then FAN ON
If Temp < 79.7 Then FAN OFF
Max Change 010 M Then FAN OFF

But the fan is switching on and then off within a minute and then on withiin a minute and so on...
 
The Max change statement only effects either the on state or the off state - not both. So the Max Change statement above keeps the fan off for at least 10 minutes before it is allow to turn back on. There is no time constraint for the ON state.

Curt
 
Back
Top