Skip to content
Snippets Groups Projects
Commit d3c47300 authored by Scott Lahteine's avatar Scott Lahteine
Browse files

For SCARA probe Y offset is proximal/distal

parent b90f54b0
Branches
Tags
No related merge requests found
......@@ -304,9 +304,17 @@ void safe_delay(millis_t ms) {
SERIAL_ECHOPGM(" (Aligned With");
#endif
#if Y_PROBE_OFFSET_FROM_EXTRUDER > 0
#if IS_SCARA
SERIAL_ECHOPGM("-Distal");
#else
SERIAL_ECHOPGM("-Back");
#endif
#elif Y_PROBE_OFFSET_FROM_EXTRUDER < 0
#if IS_SCARA
SERIAL_ECHOPGM("-Proximal");
#else
SERIAL_ECHOPGM("-Front");
#endif
#elif X_PROBE_OFFSET_FROM_EXTRUDER != 0
SERIAL_ECHOPGM("-Center");
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment