ebariaux
DIIDevHeads IoT Integration Server
•Created by Afuevu on 1/9/2025 in #🟩-pcb-and-analog
How to fix fan toggling issue in temperature control system?
Use a hysteresis function, with 2 thresholds
Something like
if temp > 30 { fan on }
if temp < 25 { fan off }
temp between 25 and 30 will not change the state of the system
2 replies