probing gcode for z axis

This commit is contained in:
sanjayk03-dev
2024-12-09 23:43:53 +05:30
parent b83f25cd28
commit 3afb6a7c07

View File

@@ -264,14 +264,14 @@
} else if(probeType === "a") { } else if(probeType === "a") {
ControllerMethods.send(` ControllerMethods.send(`
G21 G21
G92 Z0 G92 A0
G38.2 Z -25.4 F${fastSeekRotary} G38.2 A -25.4 F${fastSeekRotary}
G91 G1 Z 1 G91 G1 A 1
G38.2 Z -2 F${slowSeekRotary} G38.2 A -2 F${slowSeekRotary}
G92 Z ${zOffsetRotary} G92 A ${zOffsetRotary}
G91 G0 Z 25 G91 G0 A 25
M2 M2
`); `);