Hallo Klaus,
das ändert leider nichts. Wobei ich noch dazusagen muss, dass bei Erwärmung schnell erkannt wird, dass die Temperatur steigt, bei Abkühlung dauert das allerdings rund eine Minute und das ist definitiv zu lang.
Grüße
Edit: Mein Code sieht so aus:
Code:
// Temperatur steigt
if ((previous_temp_val < current_temp_val) &&
((current_temp_val - previous_temp_val) >= DELTA_TEMP))
{
// ...
}
// Temperatur sinkt
else if ((previous_temp_val >= current_temp_val) &&
((previous_temp_val - current_temp_val) >= DELTA_TEMP))
{
// ...
}
// Temperatur konstant
else
{
// ...
}