diff -r 0ad4cb5f4afa -r 44566f986f76 thermferm/thermferm.c --- a/thermferm/thermferm.c Thu Sep 17 20:45:01 2015 +0200 +++ b/thermferm/thermferm.c Thu Sep 17 20:54:34 2015 +0200 @@ -268,7 +268,9 @@ * Set a sane default until it will be overruled by the * main processing loop. */ - current_unit->prof_target = 20.0; + current_unit->prof_target_lo = 19.8; + current_unit->prof_target_hi = 20.2; + current_unit->prof_fridge_mode = 0; } } @@ -1351,7 +1353,7 @@ case UNITMODE_FRIDGE: lcd_buf_write(row++, "Target %.1f %cC ", unit->fridge_set, 0xdf); break; case UNITMODE_PROFILE: if (unit->prof_state != PROFILE_OFF) - lcd_buf_write(row++, "Target %.1f %cC ", unit->prof_target, 0xdf); + lcd_buf_write(row++, "Tgt %.1f..%.1f %cC ", unit->prof_target_lo, unit->prof_target_hi, 0xdf); else lcd_buf_write(row++, "Target not set "); break;