浏览代码

Show leveling status on character LCD

Scott Lahteine 7 年前
父节点
当前提交
56c05a7015
共有 1 个文件被更改,包括 4 次插入0 次删除
  1. 4
    0
      Marlin/src/lcd/ultralcd_impl_HD44780.h

+ 4
- 0
Marlin/src/lcd/ultralcd_impl_HD44780.h 查看文件

@@ -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
   //

正在加载...
取消
保存