Wie sieht es denn aus, wenn Di so wie unten klammerst?
Code:
#define DELTA_TEMP 2
uint16_t previous_temp_val, current_temp_val;
// ...
// Temperatur steigt
if ((previous_temp_val < current_temp_val) &&
((current_temp_val - previous_temp_val) >= DELTA_TEMP))
{
// ...
Grüße
Klaus