G34 Auto-align multi-stepper Z axis (#11302)
This commit is contained in:
committed by
Scott Lahteine
parent
f9b80e7217
commit
5536228359
@ -51,6 +51,7 @@
|
||||
#define MSG_AUTO_HOME_X _UxGT("Home X")
|
||||
#define MSG_AUTO_HOME_Y _UxGT("Home Y")
|
||||
#define MSG_AUTO_HOME_Z _UxGT("Home Z")
|
||||
#define MSG_AUTO_Z_ALIGN _UxGT("Z-Achsen abgleichen")
|
||||
#define MSG_TMC_Z_CALIBRATION _UxGT("Kalibriere Z")
|
||||
#define MSG_LEVEL_BED_HOMING _UxGT("Home XYZ")
|
||||
#define MSG_LEVEL_BED_WAITING _UxGT("Klick zum Starten")
|
||||
|
@ -91,6 +91,9 @@
|
||||
#ifndef MSG_AUTO_HOME_Z
|
||||
#define MSG_AUTO_HOME_Z _UxGT("Home Z")
|
||||
#endif
|
||||
#ifndef MSG_AUTO_Z_ALIGN
|
||||
#define MSG_AUTO_Z_ALIGN _UxGT("Auto Z-Align")
|
||||
#endif
|
||||
#ifndef MSG_TMC_Z_CALIBRATION
|
||||
#define MSG_TMC_Z_CALIBRATION _UxGT("Calibrate Z")
|
||||
#endif
|
||||
|
@ -451,6 +451,13 @@ void menu_motion() {
|
||||
MENU_ITEM(gcode, MSG_AUTO_HOME_Z, PSTR("G28 Z"));
|
||||
#endif
|
||||
|
||||
//
|
||||
// Auto Z-Align
|
||||
//
|
||||
#if ENABLED(Z_STEPPER_AUTO_ALIGN)
|
||||
MENU_ITEM(gcode, MSG_AUTO_Z_ALIGN, PSTR("G34"));
|
||||
#endif
|
||||
|
||||
//
|
||||
// TMC Z Calibration
|
||||
//
|
||||
|
Reference in New Issue
Block a user