Basic workflow 2D
From ShapeOko
Revision as of 10:10, 28 August 2012 by Edward (Talk | contribs) (Created page with "Basic 2D Workflow via Fully Open Source CAD/CAM Stack ==Create part file with Inkscape== Great path from text, ungroup [[File:9_sh...")
Basic 2D Workflow via Fully Open Source CAD/CAM Stack
Contents
Create part file with Inkscape
- Open Inkscape
- Create Text with text tool (scale your text to the size you want)
- Select your text (with the arrow) and move it to X=0, Y=0 via the menu bar
- With the text selected, click Path -> Object to Path
- Ungroup your new paths, click Object -> Ungroup (you'll notice each letter now has a box around it)
- Save your file as DXF via the Big Blue Saw Plugin (*.DXF), close inkscape
Create toolpaths with HeeksCNC
- Open your STP file
- Right Click on face of Solid.
- Select Face -> Make a sketch from Face
- Right click on the sketch in left pane, select 'Split Sketch' - You now have two seperate sketches
- Select the inside profile (outline will turn darker)
- Click Machining -> Add New Milling Operation -> Pocket Operation -> Fill in details -> Click OK (or apply?)
- Click Machining -> G0 (Post Process) - your toolpath will show (DOS box pops up, then disapears)
- Select the outside profile (outline will turn darker)
- Click Machining -> Add New Milling Operation -> Profile Operation (no window pops up) - control output via Properties pane in lower left
- Select 'Outside' for 'Tool on Side'
- Make sure your final depth is the thickness of your material.
- Select the appropriate tool
- Click Machining -> G0 (Post Process) - your toolpath will show (DOS box pops up, then disapears)
- At the bottom of your screen you will see the actual g-code output. You can copy and paste that to a text file. OR, click Machining -> Save nc File.
Simulate toolpaths with OpenSCAM
- Click File-> Open
- Find the NC file you saved from HeeksCNC
- OpenSCAM will process the file, resulting in what the part will look like *finished*
- There is a slider bar in the middle of the left hand window, slide that all the way to the left. Toggle the direction arrow to the right
- Click Edit -> Project
- Add a new tool: Click +, define tool at 10mm length 3.175mm diameter. Make note of the tool number!
- Open your NC file and find out what tool it's expecting to find. Towards the top you'll see the T command. Maybe T16?
- In the NC file, change the T# to match the tool you just created in OpenSCAM. Save your NC file. You will notice OpenSCAM re-rendering the toolpaths to accomdate the change in cutter size.
- Switching back over to OpenSCAM: Click the 'Play Button' under the 'Animate Toolpath' Section.
- Watch in amazement!
- If you are impatient, click the fast forward button, directly to the right of the 'Play button' to speed things up.
Run your job with Universal Gcode Sender
- Browse for the NC file we just simulated
- next step...