Tool Change setup
06 Jun 2017 21:37 #94203
by Cpk_Rbt
Tool Change setup was created by Cpk_Rbt
Anyone have experience setting up a rack tool changer?
I have a stationary tool rack that holds 4 tools. I have a single air valve that toggles the spindle to hold/drop the tool.
I've started looking at the sim.axis.remap.rack-toolchange example, but it seems overly complicated for what I need.
I have a stationary tool rack that holds 4 tools. I have a single air valve that toggles the spindle to hold/drop the tool.
I've started looking at the sim.axis.remap.rack-toolchange example, but it seems overly complicated for what I need.
Please Log in or Create an account to join the conversation.
- tommylight
- Away
- Moderator
Less
More
- Posts: 19188
- Thank you received: 6430
06 Jun 2017 23:20 #94207
by tommylight
Replied by tommylight on topic Tool Change setup
No experience with that type, but i would sure have a look at doing that with some gcode subs that would be called instead or when a tool change is called for, something in the lines of:
M6T3
subT3
Raise Z
Goto XY coordinates of tool 3
activate output for valve
lower Z
deactivate output for valve
raise Z
move on to do the work
That would also need some logic for checking what tool is inserted etc etc.
M6T3
subT3
Raise Z
Goto XY coordinates of tool 3
activate output for valve
lower Z
deactivate output for valve
raise Z
move on to do the work
That would also need some logic for checking what tool is inserted etc etc.
The following user(s) said Thank You: Cpk_Rbt
Please Log in or Create an account to join the conversation.
07 Jun 2017 12:01 #94222
by andypugh
It probably isn't. You do need to take account of what happens if a toolchange goes wrong, and the example probably does that.
You can take it in stages. First write a G-code subroutine to run the tool-change, then do the re-map to get it to be called automatically with an M6. (or with a Tnn if you want to be unconvetional).
The example rack_change.ngc is likely to be very close to what you need.
Note that it calls this routine to calculate the positions and that expects a section in the INI that defines the absolute position of the rack and the spacing between the pockets and to make that work you need to turn-on INI access from G-code:
If you prefer you could, for your machine, hard-code the numbers in the G-code subs.
Replied by andypugh on topic Tool Change setup
I've started looking at the sim.axis.remap.rack-toolchange example, but it seems overly complicated for what I need.
It probably isn't. You do need to take account of what happens if a toolchange goes wrong, and the example probably does that.
You can take it in stages. First write a G-code subroutine to run the tool-change, then do the re-map to get it to be called automatically with an M6. (or with a Tnn if you want to be unconvetional).
The example rack_change.ngc is likely to be very close to what you need.
Note that it calls this routine to calculate the positions and that expects a section in the INI that defines the absolute position of the rack and the spacing between the pockets and to make that work you need to turn-on INI access from G-code:
FEATURES= 30
If you prefer you could, for your machine, hard-code the numbers in the G-code subs.
The following user(s) said Thank You: Cpk_Rbt
Please Log in or Create an account to join the conversation.
Time to create page: 0.063 seconds