- Joined
- Mar 21, 2016
- Messages
- 251
You could also run a subprogram to get the result you're looking for.
G54
M98 P1234
G55
M98 P1234
ect...
M30
O1234
(part program goes here)
If you're lazy like me, you can also put the work offsets right into your Gcode using the G10 command. That way you don't have to go change your work offset table every time you go to run the program. Very handy if it's something you are going to run often. For example:
G10L2P1X0.Y0.Z0. (G54)
G10L2P2X-5.75Y0.Z0. (G55)
ect...
G54
M98 P1234
G55
M98 P1234
ect...
M30
O1234
(part program goes here)
If you're lazy like me, you can also put the work offsets right into your Gcode using the G10 command. That way you don't have to go change your work offset table every time you go to run the program. Very handy if it's something you are going to run often. For example:
G10L2P1X0.Y0.Z0. (G54)
G10L2P2X-5.75Y0.Z0. (G55)
ect...