Z axis with engraver and drill
-
- 2 Star Member
- Posts: 79
- Joined: Sat Apr 01, 2017 5:38 pm
Z axis with engraver and drill
Hope this works.
Wondering if anyone running UCCNC knows how to trigger an output based on a tool call/command?
Plan is to control the actuation and monitor positions with a separate PLC. All I need to figure out is how to do the above.
Wondering if anyone running UCCNC knows how to trigger an output based on a tool call/command?
Plan is to control the actuation and monitor positions with a separate PLC. All I need to figure out is how to do the above.
You currently do not have access to download this file.
To gain download access for DXF, SVG & other files Click Here
- acourtjester
- 6 Star Elite Contributing Member
- Posts: 8183
- Joined: Sat Jun 02, 2012 6:04 pm
- Location: Pensacola, Fla
Re: Z axis with engraver and drill
Have you tried to ask questions on their forum?? they helped me with a few things
https://www.forum.cncdrive.com/index.ph ... b89e015ced
https://www.forum.cncdrive.com/index.ph ... b89e015ced
DIY 4X4 Plasma/Router Table
Hypertherm PM65 Machine Torch
Drag Knife and Scribe
Miller Mig welder
13" metal lathe
Small Mill
Everlast PowerTig 255 EXT
Hypertherm PM65 Machine Torch
Drag Knife and Scribe
Miller Mig welder
13" metal lathe
Small Mill
Everlast PowerTig 255 EXT
-
- 4.5 Star Elite Contributing Member
- Posts: 2187
- Joined: Fri Apr 17, 2009 11:48 am
Re: Z axis with engraver and drill
That is super cool. Please post back with your progress on this project. Awesome!
-
- 2 Star Member
- Posts: 79
- Joined: Sat Apr 01, 2017 5:38 pm
Re: Z axis with engraver and drill
@AJ: I asked there too. Figure try here since it's a plasma specific forum.
Progress. Pneumatic hardware showed up.
Progress. Pneumatic hardware showed up.
You currently do not have access to download this file.
To gain download access for DXF, SVG & other files Click Here
-
- 4.5 Star Elite Contributing Member
- Posts: 2187
- Joined: Fri Apr 17, 2009 11:48 am
Re: Z axis with engraver and drill
That's sick, I love it. Following this topic
- acourtjester
- 6 Star Elite Contributing Member
- Posts: 8183
- Joined: Sat Jun 02, 2012 6:04 pm
- Location: Pensacola, Fla
Re: Z axis with engraver and drill
Please don't let me rain on your parade, this is a very interesting project. My concern is the weight of the Z assembly with the attachments, and using the "V" bearing and rails. The type used on the vertical assembly (but larger) may have been a better choice, in an upper and lower arrangement .IMHO
DIY 4X4 Plasma/Router Table
Hypertherm PM65 Machine Torch
Drag Knife and Scribe
Miller Mig welder
13" metal lathe
Small Mill
Everlast PowerTig 255 EXT
Hypertherm PM65 Machine Torch
Drag Knife and Scribe
Miller Mig welder
13" metal lathe
Small Mill
Everlast PowerTig 255 EXT
-
- 2 Star Member
- Posts: 79
- Joined: Sat Apr 01, 2017 5:38 pm
Re: Z axis with engraver and drill
Unless the linear rails are quality rails with felt in the trucks and plugs in the rail, plasma dust wreaks havoc on linear rails. My current system has it and over time, it begins to impede bearing movement. The linear bearings on the Z will be fine since it's short travel and will be enclosed.acourtjester wrote: ↑Wed Feb 24, 2021 2:38 pm Please don't let me rain on your parade, this is a very interesting project. My concern is the weight of the Z assembly with the attachments, and using the "V" bearing and rails. The type used on the vertical assembly (but larger) may have been a better choice, in an upper and lower arrangement .IMHO
You haven't seen the full design. I'm aware of where the CG lies. That solidmodel is just part of the Z axis assembly, not the entire Z axis nor entire table.
-
- 2 Star Member
- Posts: 79
- Joined: Sat Apr 01, 2017 5:38 pm
Re: Z axis with engraver and drill
Next step is to machine the z axis parts. This almost balances the entire assembly evenly on the v rail. SWs says the CG is about .25 inches towards the torch side when the z axis is up. Of course the CG moves with respect to the z axis, which tool is in use, how much cable track is being pulled, etc. Even without the motors counterbalancing, it glides like butter. The spring tensioner v bearings on the bottom keep things tight enough.
You currently do not have access to download this file.
To gain download access for DXF, SVG & other files Click Here
-
- 4.5 Star Elite Contributing Member
- Posts: 1832
- Joined: Mon Jun 12, 2017 6:43 pm
Re: Z axis with engraver and drill
edit the M6 macro and create a conditional statementrbmgf7 wrote: ↑Tue Feb 23, 2021 8:55 am Hope this works.
Wondering if anyone running UCCNC knows how to trigger an output based on a tool call/command?
Plan is to control the actuation and monitor positions with a separate PLC. All I need to figure out is how to do the above.
20210219_173701.jpg
Annotation 2021-02-23 075220.jpg
sort of....
if (currenttool = 5) {
setoutput(10)
}
else
{clearoutput(10)}
-
- 4.5 Star Elite Contributing Member
- Posts: 1832
- Joined: Mon Jun 12, 2017 6:43 pm
Re: Z axis with engraver and drill
you will need to use the right method names (c#, functions are called methods)robertspark wrote: ↑Fri Feb 26, 2021 2:42 pmedit the M6 macro and create a conditional statementrbmgf7 wrote: ↑Tue Feb 23, 2021 8:55 am Hope this works.
Wondering if anyone running UCCNC knows how to trigger an output based on a tool call/command?
Plan is to control the actuation and monitor positions with a separate PLC. All I need to figure out is how to do the above.
20210219_173701.jpg
Annotation 2021-02-23 075220.jpg
sort of....
if (currenttool = 5) {
setoutput(10)
}
else
{clearoutput(10)}
search for my username and find the macromanal in my signature on the uccnc forum
-
- 2 Star Member
- Posts: 79
- Joined: Sat Apr 01, 2017 5:38 pm
Re: Z axis with engraver and drill
I know enough C++ to do simple stuff and if I stare at it long enough, I'm sure the C# will click. I found a blanket M6 macro and am dissecting it along with reading the macro manual.robertspark wrote: ↑Fri Feb 26, 2021 2:44 pmyou will need to use the right method names (c#, functions are called methods)robertspark wrote: ↑Fri Feb 26, 2021 2:42 pmedit the M6 macro and create a conditional statementrbmgf7 wrote: ↑Tue Feb 23, 2021 8:55 am Hope this works.
Wondering if anyone running UCCNC knows how to trigger an output based on a tool call/command?
Plan is to control the actuation and monitor positions with a separate PLC. All I need to figure out is how to do the above.
20210219_173701.jpg
Annotation 2021-02-23 075220.jpg
sort of....
if (currenttool = 5) {
setoutput(10)
}
else
{clearoutput(10)}
search for my username and find the macromanal in my signature on the uccnc forum
-
- 2 Star Member
- Posts: 79
- Joined: Sat Apr 01, 2017 5:38 pm
Re: Z axis with engraver and drill
Chugging along. Got the z axis motor case machined and made the tiny bits to connect the air cylinders to the attachments and counterbalance.
You currently do not have access to download this file.
To gain download access for DXF, SVG & other files Click Here
-
- 4.5 Star Elite Contributing Member
- Posts: 2187
- Joined: Fri Apr 17, 2009 11:48 am
Re: Z axis with engraver and drill
Looking good