Implementation and Configuration of a Unified "Ref All Home" Script for Mach3 CNC Controllers

' --- Disable limits temporarily (optional but prevents false triggers) --- ' DoOEMButton(1021) ' Uncomment if needed: Disable limits

Paste the following script. This example includes safety checks.

' --- Home Y Axis --- Message "Homing Y Axis..." DoOEMButton(1035) ' Ref Y While IsMoving() Sleep 100 Wend

' --- Final status --- Message "All axes homed successfully." SetUserLED(10, 1) ' Optional: Light a custom "Homed" LED

' Mach3 - Ref All Home Script ' Sequence: Z, X, Y, A ' --- Safety Check: Ensure machine is not running --- If IsMoving() Then Message "Cannot home while machine is moving. Stop first." Exit Sub End If

' --- Re-enable limits if disabled --- ' DoOEMButton(1021) ' Re-enable limits

' --- Home X Axis --- Message "Homing X Axis..." DoOEMButton(1034) ' Ref X While IsMoving() Sleep 100 Wend