浏览代码

Better LCD message when heating needed

Scott Lahteine 7 年前
父节点
当前提交
266086670b
共有 2 个文件被更改,包括 6 次插入1 次删除
  1. 3
    1
      Marlin/src/feature/pause.cpp
  2. 3
    0
      Marlin/src/lcd/language/language_en.h

+ 3
- 1
Marlin/src/feature/pause.cpp 查看文件

@@ -261,8 +261,10 @@ bool pause_print(const float &retract, const point_t &park_point, const float &u
261 261
     SERIAL_ERRORLNPGM(MSG_HOTEND_TOO_COLD);
262 262
 
263 263
     #if ENABLED(ULTIPANEL)
264
-      if (show_lcd) // Show status screen
264
+      if (show_lcd) { // Show status screen
265 265
         lcd_advanced_pause_show_message(ADVANCED_PAUSE_MESSAGE_STATUS);
266
+        LCD_MESSAGEPGM(MSG_M600_TOO_COLD);
267
+      }
266 268
     #endif
267 269
 
268 270
     return false; // unable to reach safe temperature

+ 3
- 0
Marlin/src/lcd/language/language_en.h 查看文件

@@ -959,6 +959,9 @@
959 959
 #ifndef MSG_ERR_PROBING_FAILED
960 960
   #define MSG_ERR_PROBING_FAILED              _UxGT("Probing failed")
961 961
 #endif
962
+#ifndef MSG_M600_TOO_COLD
963
+  #define MSG_M600_TOO_COLD                   _UxGT("M600: Too cold")
964
+#endif
962 965
 
963 966
 //
964 967
 // Filament Change screens show up to 3 lines on a 4-line display

正在加载...
取消
保存