Mach3 Ref | All Home Script

Paste the following script. This example includes safety checks.

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

' --- Home A Axis (if present) --- If GetOEMLED(33) Then ' LED 33 = A axis exists/active Message "Homing A Axis..." DoOEMButton(1036) ' Ref A While IsMoving() Sleep 100 Wend End If Paste the following script

' 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 mach3 ref all home script

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