Procházet zdrojové kódy

Better LCD message when heating needed

Scott Lahteine před 7 roky
rodič
revize
266086670b

+ 3
- 1
Marlin/src/feature/pause.cpp Zobrazit soubor

@@ -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 Zobrazit soubor

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

Loading…
Zrušit
Uložit