Can anyone tell me how to get the axis to step off away from the home switches. At the moment they hit the switch, and zero for that axis, but I would like the axis to back off the switch by about 5mm or so.
Printable View
Can anyone tell me how to get the axis to step off away from the home switches. At the moment they hit the switch, and zero for that axis, but I would like the axis to back off the switch by about 5mm or so.
What software?
I have Mach 3 installed
I'm using Mach3 and mine moves until the switch changes state then backs off until it changes back.
The place to ask if the system can be set up to back off further would be the Mach3 support forum.
- Nick
Thanks I'll give thier forum a search
Kev
Why would you need it to move off by 5mm?
It doesn't have to be 5mm it could be any amount. The machine I run at work does it so I thought it would be a good idea to do the same with my router at home
Change your homing script to something like this:
DoButton( 24 )
Code "G53 G0 Z-5"
While IsMoving()
Wend
DoButton( 23 )
Code "G53 G0 Y5"
While IsMoving()
Wend
DoButton(22)
Code "G53 G0 X5"
While IsMoving()
Wend
Thanks for that I'll give it a try
Cheers
Kev