CNC machine won't stop to change tools

CNC machine won't stop to change tools

raquelbennaton
Participant Participant
2,007 Views
10 Replies
Message 1 of 11

CNC machine won't stop to change tools

raquelbennaton
Participant
Participant

Hi, The cnc machine usually stops to change tools in between cutting but this time it continued to machine without pause and drilled a bigger bit. why does this happen and how can I solve this issue?

0 Likes
2,008 Views
10 Replies
Replies (10)
Message 2 of 11

seth.madore
Community Manager
Community Manager

It sounds to me like you have two tools that are numbered the same.

If that is definitely not the case, could you share your Fusion file as well as state what post processor you are using?


Seth Madore
Customer Advocacy Manager - Manufacturing


0 Likes
Message 3 of 11

raquelbennaton
Participant
Participant

Here is the fusion file, the tools I used are 6mm and 4mm. trace is 6mm and contour is 4mm

0 Likes
Message 4 of 11

seth.madore
Community Manager
Community Manager

And what post processor?


Seth Madore
Customer Advocacy Manager - Manufacturing


0 Likes
Message 5 of 11

raquelbennaton
Participant
Participant

Screenshot 2022-01-12 at 12.03.59 pm.png

 the post process is for a mach3mill 

0 Likes
Message 6 of 11

seth.madore
Community Manager
Community Manager

Does your machine have a toolchanger, or do you have to swap out bits manually?


Seth Madore
Customer Advocacy Manager - Manufacturing


0 Likes
Message 7 of 11

raquelbennaton
Participant
Participant

we have to change the tools automatically. So after finishing cutting the 6mm bit the machine pauses so we can change the tool to 4mm but sometimes it doesn't stop "jumping" to the next step and cutting out the 4mm path with the 6mm tool.

0 Likes
Message 8 of 11

seth.madore
Community Manager
Community Manager

Your statement sounds contradictory (perhaps I'm misunderstanding you). Does your machine have a toolchanger that manages the entire process of changing out tools, or do you need the machine to stop for you to manually change the tool, using wrenches and the like?


Seth Madore
Customer Advocacy Manager - Manufacturing


0 Likes
Message 9 of 11

raquelbennaton
Participant
Participant
Sorry, I meant the machine needs to stop so we manually have to change the
tools with wrenches
0 Likes
Message 10 of 11

seth.madore
Community Manager
Community Manager

If you are willing to edit your post processor, we can get an M0 added right after the tool call.

Find this spot in the Mach3 post (approximately line 894):

if (getProperty("useM6")) {
      writeBlock("T" + toolFormat.format(tool.number), mFormat.format(6));
    } else {
      writeBlock("T" + toolFormat.format(tool.number));
    }

Change it to this:

if (getProperty("useM6")) {
      writeBlock("T" + toolFormat.format(tool.number), mFormat.format(6));
    } else {
      writeBlock("T" + toolFormat.format(tool.number), (mFormat.format(0))); 
    }

This will give you an output such as:
T2M0 (which will stop the machine)


Seth Madore
Customer Advocacy Manager - Manufacturing


0 Likes
Message 11 of 11

raquelbennaton
Participant
Participant

Hi, I am trying to cut the inside of the mounting holes that at the moment are all in one layer. But when I select to cut it it cuts on the outside and not the inside. Is there a way to invert it so that way it cuts inside ? 

Screenshot 2022-05-05 at 15.14.35.png

Screenshot 2022-05-05 at 15.14.59.png

Screenshot 2022-05-05 at 15.15.08.png

Screenshot 2022-05-05 at 15.15.20.png

Screenshot 2022-05-05 at 15.15.28.png

Screenshot 2022-05-05 at 15.15.36.png

Screenshot 2022-05-05 at 15.15.44.png

0 Likes