Browse Source

Merge pull request #7774 from thinkyhead/bf2_lcd_leveling_status

[2.0.x] Show leveling status on character LCD
Scott Lahteine 6 years ago
parent
commit
8c622a59cf
1 changed files with 4 additions and 0 deletions
  1. 4
    0
      Marlin/src/lcd/ultralcd_impl_HD44780.h

+ 4
- 0
Marlin/src/lcd/ultralcd_impl_HD44780.h View File

@@ -794,6 +794,10 @@ static void lcd_implementation_status_screen() {
794 794
     _draw_axis_label(Z_AXIS, PSTR(MSG_Z), blink);
795 795
     lcd.print(ftostr52sp(FIXFLOAT(current_position[Z_AXIS])));
796 796
 
797
+    #if HAS_LEVELING
798
+      lcd.write(leveling_is_active() || blink ? '_' : ' ');
799
+    #endif
800
+
797 801
   #endif // LCD_HEIGHT > 2
798 802
 
799 803
   //

Loading…
Cancel
Save