This is my attempt at a quick tutorial to use DXF2GCODE with Maslow. It seems that DXF2GCODE is quite popular for CAM, and my brief dabblings with it show great promise. At the time of writing I have not yet run the output from DXF2GCODE on our Maslow, but I am writing this for my future self (and others) to refer to. If I have overlooked something or made any errors please post a followup message here.
Also, I only know how to do cuts. Pocketing and drilling are arcane mysteries at the moment.
First, get the software. You can find it on SourceForge here:
The workflow is:
Some DXF file -> DXF2GCODE -> G-Code file
Obviously, once you have the G-Code file you can load it up onto the Maslow. Yay!
The other thing is you can use your favourite CAD software to make the DXF. Double yay! I am mostly using QCAD, but I have also used OpenSCAD to make a 2D projection of a model, which can then be exported as DXF. The workflow expands thus:
Your favourite CAD software -> DXF file -> DXF2GCODE -> G-Code file -> Maslow
So, assumptions:
Assumption 1: You have a DXF file and you know what elements you want to cut (and whether you want to do an internal cut or external cut).
Assumption 2: You know what kind of tool you have on Maslow, and that it is set up so that Z=0 is the top surface of the workpiece, positive Z is above the workpiece (for safe moving) and negative Z is below the surface, cutting into the workpiece.
Assumption 3: You know the best feed rate for your tool and material, how thick the material is, and how deep you want to cut each element.
Letās look at the software. I am going to ignore the menu functions I havenāt used. Along the top we have File, Export, View, Options and Help.
File|Openā¦
Open the DXF file.
Export|Optimize and Export Shapes
Export the shapes into a G-Code file (usually ending in .ngc)
View|Show Path Directions
Make sure this is ticked
Options|Machine Type|Milling
Make sure this is ticked
Options|Automatic Cutter Compensation
Make sure this is un-ticked. Maslow does not recognise G41 and G42.
Options|Configurationā¦
Configuration settings. Most can be left as default. I changed the ones below:
-
Machine config
Third axis defaults
Retraction coordinate: 5mm
Safety margin: 3mm
G1 feed rates
First and Second axis (2D plane): 700 mm/min -
Tools table
I edited tool 1 to be diameter 6.35, speed 6000, start_radius 0.00
I deleted the other default tools.
The config file is stored in username/.config/dxf2gcode/config/config.cfg
Itās possible we could make a generic one that is ready to go for Maslow, and a Maslow post-processor, but for now, these are the only changes I made from the defaults.
Using the software
File|Open⦠open your DXF file. It will be drawn in the window on the right. Since you have only one tool defined (tool 1) then all cuts will have that tool selected.
On the left is a tabbed panel (Entities and Layers). Choose Layers. Click on the checkbox to deselect layers you donāt want, leaving only the layers containing elements you want to cut. You can also collapse the layers so that the list looks less cluttered by clicking on the tiny triangle at the very left of the layer name.
Now the window on the right will show only the elements you are going to cut. If there are extra elements there that you donāt want to cut you can deselect them in the list on the left.
Next to each element are two arrows. The blue arrow shows the approach direction and start position of the cut. The green arrow shows the exit from the cut. The arrow direction will help you apply cutting compensation (left or right) to account for the radius of the cutting tool.
Click on each element in the right hand window. The corresponding shape will be indicated in the list on the left, and the details of the cut will be shown below the list.
Again, because you only have one tool all of the settings will be pre-filled.
You can multi-select objects with Ctrl-click, or dragging a box around a group of objects.
For each object, check the settings for the cut (specifically the Z final mill depth). You can do a partial thickness cut, or full thickness cut. The software will calculate how many passes are needed, based on the Z Infeed depth setting.
Once you have selected an object or group of objects right-click on them to bring up the context menu. The only one you need is Cutter Compensation. You can specify G40 No Compensation, G41 Left Compensation and G42 Right Compensation. Because Maslow doesnāt support these commands and we turned off automatic cutter compensation the software will generate a toolpath which includes the desired compensation.
Thatās it!
Click Export|Optimize and Export Shapes. The software will make an .ngc file for you.
I have not tested this file on Maslow yet, but I donāt think I have missed anything to get to this point. Again, if anyone spots any obvious mistakes, or can add clarity or further information please post here or PM me.