Skip to content
Snippets Groups Projects
Commit cea3ea77 authored by Scott Lahteine's avatar Scott Lahteine
Browse files

Fix submenu hotend status display

parent b9b203bf
No related branches found
No related tags found
No related merge requests found
......@@ -634,7 +634,7 @@ static void lcd_implementation_status_screen() {
u8g.setPrintPos(LCD_PIXEL_WIDTH - 11 * (DOG_CHAR_WIDTH), row_y2);
lcd_print('E');
lcd_print((char)('0' + active_extruder));
lcd_print((char)('1' + active_extruder));
lcd_print(' ');
lcd_print(itostr3(thermalManager.degHotend(active_extruder)));
lcd_print('/');
......
......@@ -807,7 +807,7 @@ static void lcd_implementation_status_screen() {
static void lcd_implementation_hotend_status(const uint8_t row) {
if (row < LCD_HEIGHT) {
lcd.setCursor(LCD_WIDTH - 9, row);
lcd.print(LCD_STR_THERMOMETER[active_extruder]);
lcd.print(LCD_STR_THERMOMETER[0]);
lcd.print(itostr3(thermalManager.degHotend(active_extruder)));
lcd.print('/');
lcd.print(itostr3(thermalManager.degTargetHotend(active_extruder)));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment