qinMOTU

Results 3 comments of qinMOTU

External Feature Center Finding Macro: // Centre Finding Macro For OpenBuilds Control // V 2.1 // // Finds the centre of external edges of features. // Position the probe over...

Z-Plane Finding Macro: // Z平面探测 function probeZPlane(zTravel, zSpeedQ, zSpeedS, retract) { console.log("开始Z平面探测"); const originalDistMode = laststatus.machine.modals["distancemode"] || "G90"; const originalUnitsMode = laststatus.machine.modals["unitsmode"] || "G21"; socket.off('prbResult'); // 执行第一次探测 runGcode(`G21\nG91\nG38.2 Z-${zTravel} F${zSpeedQ}`);...

> 函数 probeZPlane 仅在探针失败的情况下恢复原始 DistMode。如果探测成功,则不会从该线撤消 G91 > > // 执行第一次探测 > runGcode(`G21\nG91\nG38.2 Z-${zTravel} F${zSpeedQ}`); > 然后它再次从 > > // 安全抬升 > runGcode(`G91 G0 Z5`); > 将 CNC 系统置于 G91 模式是不明智的。...