File diff 573011597aec → 6cc8fa5ae0f6
src/display.c
Show inline comments
 
@@ -84,8 +84,8 @@ void display_process(void)
 

	
 
            if(temp_changed || state_changed) {
 
                char tempstr[16];
 
                snprintf(tempstr, 16, "Temp: %g", status->temp);
 
                ssd1306_drawstring("             ", 3, 40);
 
                snprintf(tempstr, 16, "Temp: %6.1f", status->temp);
 
//                ssd1306_drawstring("             ", 3, 40);
 

	
 
                ssd1306_drawstring(tempstr, 3, 40);
 
            }