jim80
Active Member
MacKiwi, is your code for the on/off as simple as be, in other words something like
if (measuredTemp >= desiredTemp)
{
turnHeatOff()
}else{
turnHeatOn()
}
or do you have something that either smooths out or ignores noise in order to prevent rapid on/off switches close to the desired temperature? I think the term might be something like "hysteresis", but I've forgotten most of my engineering education so I might be wrong about that.
if (measuredTemp >= desiredTemp)
{
turnHeatOff()
}else{
turnHeatOn()
}
or do you have something that either smooths out or ignores noise in order to prevent rapid on/off switches close to the desired temperature? I think the term might be something like "hysteresis", but I've forgotten most of my engineering education so I might be wrong about that.