Implement MALYAN_LCD

This commit is contained in:
Scott Lahteine 2018-02-04 17:02:45 -06:00
parent ca58084020
commit 0f6f05441b
3 changed files with 478 additions and 15 deletions

View file

@ -7628,8 +7628,10 @@ inline void gcode_M104() {
}
#endif
if (parser.value_celsius() > thermalManager.degHotend(target_extruder))
lcd_status_printf_P(0, PSTR("E%i %s"), target_extruder + 1, MSG_HEATING);
#if ENABLED(ULTRA_LCD)
if (parser.value_celsius() > thermalManager.degHotend(target_extruder))
lcd_status_printf_P(0, PSTR("E%i %s"), target_extruder + 1, MSG_HEATING);
#endif
}
#if ENABLED(AUTOTEMP)
@ -7786,7 +7788,10 @@ inline void gcode_M109() {
print_job_timer.start();
#endif
if (thermalManager.isHeatingHotend(target_extruder)) lcd_status_printf_P(0, PSTR("E%i %s"), target_extruder + 1, MSG_HEATING);
#if ENABLED(ULTRA_LCD)
if (thermalManager.isHeatingHotend(target_extruder))
lcd_status_printf_P(0, PSTR("E%i %s"), target_extruder + 1, MSG_HEATING);
#endif
}
else return;