Browse Source

Merge pull request #7773 from thinkyhead/bf1_lcd_leveling_status

[1.1.x] Show leveling status on character LCD
Scott Lahteine 7 years ago
parent
commit
de3c9bade6
1 changed files with 5 additions and 1 deletions
  1. 5
    1
      Marlin/ultralcd_impl_HD44780.h

+ 5
- 1
Marlin/ultralcd_impl_HD44780.h View File

@@ -790,7 +790,11 @@ static void lcd_implementation_status_screen() {
790 790
     lcd.setCursor(LCD_WIDTH - 8, 1);
791 791
     _draw_axis_label(Z_AXIS, PSTR(MSG_Z), blink);
792 792
     lcd.print(ftostr52sp(FIXFLOAT(current_position[Z_AXIS])));
793
-
793
+    
794
+    #if HAS_LEVELING
795
+      lcd.write(leveling_is_active() || blink ? '_' : ' ');
796
+    #endif
797
+  
794 798
   #endif // LCD_HEIGHT > 2
795 799
 
796 800
   //

Loading…
Cancel
Save