|
@@ -844,10 +844,7 @@ static void lcd_implementation_status_screen() {
|
844
|
844
|
static void lcd_implementation_hotend_status(const uint8_t row) {
|
845
|
845
|
if (row < LCD_HEIGHT) {
|
846
|
846
|
lcd.setCursor(LCD_WIDTH - 9, row);
|
847
|
|
- lcd.print(LCD_STR_THERMOMETER[0]);
|
848
|
|
- lcd.print(itostr3(thermalManager.degHotend(active_extruder)));
|
849
|
|
- lcd.print('/');
|
850
|
|
- lcd.print(itostr3(thermalManager.degTargetHotend(active_extruder)));
|
|
847
|
+ _draw_heater_status(active_extruder, LCD_STR_THERMOMETER[0], lcd_blink());
|
851
|
848
|
}
|
852
|
849
|
}
|
853
|
850
|
|