Merge branch '26-cool-down-after-auto-calibration' into 'master'

Resolve "Cool down after auto calibration"

Closes #26

See merge request lulzbot3d/marlin!20
This commit is contained in:
Brian Kahl 2021-09-16 18:53:49 +00:00
commit 6973259bcd
2 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,7 @@ bool ConfirmAutoCalibrationDialogBox::onTouchEnd(uint8_t tag) {
switch (tag) {
case 1:
GOTO_SCREEN(StatusScreen);
injectCommands_P(PSTR("M425 X0Y0Z0\nM117 Auto-Calibrate in Progress...\nG28\nG425\nM500\nM117 Backlash Saved"));
injectCommands_P(PSTR("G28\nM425 X0Y0Z0\nM117 Auto-Calibrate in Progress...\nG425\nM500\nM104 S0\nM117 Backlash Saved"));
return true;
default:
return DialogBoxBaseClass::onTouchEnd(tag);

View File

@ -375,7 +375,7 @@ void menu_motion() {
// Auto-calibration
//
#if ENABLED(CALIBRATION_GCODE)
GCODES_ITEM(MSG_AUTO_CALIBRATE, PSTR("M425 X0Y0Z0\nM117 Auto-Calibrate in Progress...\nG28\nG425\nM500\nM117 Backlash Saved"));
GCODES_ITEM(MSG_AUTO_CALIBRATE, PSTR("G28\nM425 X0Y0Z0\nM117 Auto-Calibrate in Progress...\nG425\nM500\nM104 S0\nM117 Backlash Saved"));
#endif
//