Mill G code Generator
25 Sep 2013 19:14 #39176
by BigJohnT
Replied by BigJohnT on topic Mill G code Generator
0.9.3
Everything is done except for the rigid tapping
JT
Everything is done except for the rigid tapping
JT
Please Log in or Create an account to join the conversation.
26 Sep 2013 20:18 #39220
by BigJohnT
Replied by BigJohnT on topic Mill G code Generator
Version 1.0 is the latest.
All the hole making ops should be functional. I've not tried any yet but will do so today. If anyone else could test this out it would help.
Thanks
JT
All the hole making ops should be functional. I've not tried any yet but will do so today. If anyone else could test this out it would help.
Thanks
JT
Please Log in or Create an account to join the conversation.
28 Sep 2013 20:51 #39320
by BigJohnT
Replied by BigJohnT on topic Mill G code Generator
Version 1.1 I added a couple of calculators.
JT
JT
Please Log in or Create an account to join the conversation.
29 Sep 2013 21:08 #39347
by BigJohnT
Replied by BigJohnT on topic Mill G code Generator
Version 1.2 added more info and made the enter key tab to the next widget on some pages.
JT
JT
Please Log in or Create an account to join the conversation.
30 Sep 2013 17:38 #39382
by Rick G
Replied by Rick G on topic Mill G code Generator
Hey John,
Nice having a drill/tap reference guide, the speed/feed calculators and g code generator all in one spot. Looks like you added more to the g code.
Would it be possible to have the x and y coordinates in the same order that they are input instead of reversed?
Rick G
Nice having a drill/tap reference guide, the speed/feed calculators and g code generator all in one spot. Looks like you added more to the g code.
Would it be possible to have the x and y coordinates in the same order that they are input instead of reversed?
Rick G
Please Log in or Create an account to join the conversation.
30 Sep 2013 18:07 #39386
by BigJohnT
Replied by BigJohnT on topic Mill G code Generator
Yep I just have to change one word from prepend to append. I had thoughts about that too after playing with it.
Is there anything that seems missing?
JT
Is there anything that seems missing?
JT
Please Log in or Create an account to join the conversation.
30 Sep 2013 19:27 #39390
by BigJohnT
Replied by BigJohnT on topic Mill G code Generator
Version 1.3 is the latest.
JT
JT
Please Log in or Create an account to join the conversation.
07 Jul 2018 17:56 #113696
by Studi
Replied by Studi on topic Mill G code Generator
Hello, Big John,
the pictures show a good selection of predefined cycles, very interesting. However, the link at the beginning of the post is inactive.
Runs with Gmocappy?
Is there another access to this data?
kind regards Studi
the pictures show a good selection of predefined cycles, very interesting. However, the link at the beginning of the post is inactive.
Runs with Gmocappy?
Is there another access to this data?
kind regards Studi
Please Log in or Create an account to join the conversation.
10 Jul 2018 23:27 #113979
by BigJohnT
Replied by BigJohnT on topic Mill G code Generator
Link is updated, runs as stand alone or with Axis, not sure how Gmocappy works.
JT
JT
Please Log in or Create an account to join the conversation.
12 Jul 2018 21:02 #114087
by Grotius
Replied by Grotius on topic Mill G code Generator
Hi John,
A question.
My goal is to load a dxf directly into linuxcnc.
I see ezdxf can do some work. It can make a dxf file and make a line in the code example.
In g-code the same line looks like :
G01 X0 Y0
G01 X10 Y0
In short, it looks like if you want to load a dxf file into linuxcnc, you must synchronize this to g-code due a text file. Also
inverting a g-code to dxf is possible this way.
Do you know anyone has done this before in python? I saw your name somewhere in the dxf2gcode project.
A question.
My goal is to load a dxf directly into linuxcnc.
I see ezdxf can do some work. It can make a dxf file and make a line in the code example.
import ezdxf
dwg = ezdxf.new('R2010') # create a new DXF R2010 drawing, official DXF version name: 'AC1024'
msp = dwg.modelspace() # add new entities to the model space
msp.add_line((0, 0), (10, 0)) # add a LINE entity
dwg.saveas('line.dxf')
In g-code the same line looks like :
G01 X0 Y0
G01 X10 Y0
In short, it looks like if you want to load a dxf file into linuxcnc, you must synchronize this to g-code due a text file. Also
inverting a g-code to dxf is possible this way.
Do you know anyone has done this before in python? I saw your name somewhere in the dxf2gcode project.
Please Log in or Create an account to join the conversation.
Time to create page: 0.217 seconds