g28 homes all 3 axises Is there acommand to home an individual axis like saying " home the x axis" (dont do anything to the others)
Fred,
G28 by itself in Mach3 provides for movement without axis definitions resulting in a transverse move to machine zero. As noted in Mach definitions, the intermediate point is the current point and only one movement is made when no axis words are given. One must be careful in it's use since G90, G91, and additionally Fixture Offsets can affect the resulting machine movements when G28 is commanded.
To home an individual axis, say X axis, add axis definition to the G28 command for example:
G28 X0.0 - if a G54 / work offset exists and you are away from the exact offset value then you will have two movements. IE; it will first go to the intermediate value ( the work offset value ) and then go to X axis machine zero.
G28 X0.0 – if G54 exists and you are at the exact offset value then you will have one movement ie; since your at the intermediate value there is no need to move to it so one move only to the X axis machine zero.
G28 X0.0 – if no offset exists there is no intermediate movement and the axis just goes to X axis machine zero.
G91 G28 X0.0 – there is no movement since mode is changed to incremental and the request is for zero movement
G28 – only one movement back to machine zero irrelevant if there is a work offset
Take some time and try the G28 along with axis definitions and see note the movements that occur.
Try G28 X1.0 for example and see what happens!
RICH