03-04-2016, 17:20
Hi,
Yes, it can work the way you want.
- Open the WeatherDuino_Pro2_TX_v2.0_b00x software in your Arduino IDE.
- Click on the Process_IDx tab
- Around line 41, change this
to this:
Let me know if this is what you need.
Your question / concern makes sense, I'm taking note of it, and maybe on next software release I will add some new options to control the fan. Thank you.
Yes, it can work the way you want.
- Open the WeatherDuino_Pro2_TX_v2.0_b00x software in your Arduino IDE.
- Click on the Process_IDx tab
- Around line 41, change this
Quote:if ( ((FanControlT / 100.0 >= fanOn_HiTemp) || (FanControlT / 100.0 <= fanOn_LowTemp)) && LowWind )
to this:
Quote:if ( FanControlT / 100.0 >= fanOn_HiTemp && LowWind )
Let me know if this is what you need.
Your question / concern makes sense, I'm taking note of it, and maybe on next software release I will add some new options to control the fan. Thank you.

