Browse Source

lcd <20 disply Bed Temperature cast ty (#8068)

montri2025 7 years ago
parent
commit
fa157f08ff
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      Marlin/ultralcd_impl_HD44780.h

+ 2
- 2
Marlin/ultralcd_impl_HD44780.h View File

710
 
710
 
711
       lcd.setCursor(8, 0);
711
       lcd.setCursor(8, 0);
712
       #if HOTENDS > 1
712
       #if HOTENDS > 1
713
-        lcd.print((CHAR)LCD_STR_THERMOMETER[0]);
713
+        lcd.print((char)LCD_STR_THERMOMETER[0]);
714
         _draw_heater_status(1, -1, blink);
714
         _draw_heater_status(1, -1, blink);
715
       #else
715
       #else
716
-        lcd.print((CHAR)LCD_BEDTEMP_CHAR);
716
+        lcd.print((char)LCD_BEDTEMP_CHAR);
717
         _draw_heater_status(-1, -1, blink);
717
         _draw_heater_status(-1, -1, blink);
718
       #endif
718
       #endif
719
 
719
 

Loading…
Cancel
Save