Improve M600 with timeout, wait for heatup.
This commit is contained in:
@ -379,6 +379,17 @@ FORCE_INLINE void _draw_axis_label(const AxisEnum axis, const char* const pstr,
|
||||
|
||||
//#define DOGM_SD_PERCENT
|
||||
|
||||
|
||||
static void lcd_implementation_hotend_status() {
|
||||
u8g.setPrintPos(58, 60);
|
||||
lcd_print( (char) '0'+active_extruder );
|
||||
lcd_print( ' ' );
|
||||
lcd_print( ' ' );
|
||||
lcd_print(itostr3(thermalManager.degHotend(active_extruder)));
|
||||
lcd_print('/');
|
||||
lcd_print(itostr3(thermalManager.degTargetHotend(active_extruder)));
|
||||
}
|
||||
|
||||
static void lcd_implementation_status_screen() {
|
||||
|
||||
bool blink = lcd_blink();
|
||||
|
Reference in New Issue
Block a user