2-D post processing for manufacturing, specialized in Printed Circuit Board fabrication on CNC routers.
Go to file
sopak 93e39a9c8c README.md edited online with Bitbucket 2014-12-28 21:51:58 +00:00
FlatCAM_GTK Convertion to Qt. Major refactoring. 2014-06-13 15:21:11 -04:00
bugs Gerber support for single quadrant arcs (G74). 2014-11-20 21:43:32 -05:00
descartes Fixed g-code arc parse/plot 2014-01-08 01:46:50 -05:00
doc Added OS-X installation instructions to manual. 2014-12-27 15:12:49 -05:00
manual Added link to binary Python packages in installation instructions. 2014-12-27 15:17:37 -05:00
share Subtract polygon. Cut path functional in Drawing tool. 2014-12-26 15:38:51 -05:00
tests Added rtree test script. 2014-12-27 17:26:00 -05:00
FlatCAM.py Initial implementation of console. 2014-09-13 17:29:07 -04:00
FlatCAMApp.py add shell commands and docs: 2014-12-28 22:49:04 +01:00
FlatCAMCommon.py Added Feed Method for clearing polygon. Some minor correction to Geometry.plot() 2014-12-07 14:53:33 -05:00
FlatCAMDraw.py Added OS-X installation instructions to manual. 2014-12-27 15:12:49 -05:00
FlatCAMGUI.py Closing the main window now closes the whole program. 2014-11-20 11:52:08 -05:00
FlatCAMObj.py Fixed bug preventing from saving G-Code. 2014-12-19 13:40:14 -05:00
FlatCAMShell.py Major work on the command line tool. Version check on the new website. 2014-09-21 21:51:50 -04:00
FlatCAMTool.py Added License. Added functionality to the geometry editor (move, copy, join). 2014-10-31 12:19:08 -04:00
FlatCAMWorker.py Basic geometry editor for goemetry objects started. 2014-10-28 17:39:38 -04:00
GUIElements.py Convertion to Qt. Major refactoring. 2014-06-13 15:21:11 -04:00
LICENSE Added License. Added functionality to the geometry editor (move, copy, join). 2014-10-31 12:19:08 -04:00
ObjectCollection.py Fixed bug preventing from saving G-Code. 2014-12-19 13:40:14 -05:00
ObjectUI.py Updated Ubuntu setup script to support rtree. Removed defaults.json and recent.json from the main dir. 2014-12-12 13:04:01 -05:00
PlotCanvas.py Basic geometry editor for goemetry objects started. 2014-10-28 17:39:38 -04:00
README.md README.md edited online with Bitbucket 2014-12-28 21:51:58 +00:00
camlib.py Added OS-X installation instructions to manual. 2014-12-27 15:12:49 -05:00
camlib.pyc View, delete, re-plot items 2014-01-09 22:14:46 -05:00
cirkuix.pyc View, delete, re-plot items 2014-01-09 22:14:46 -05:00
setup_ubuntu.sh Temporary fix/workaround for bug #83. Checking for empty list before running cascaded_union. 2014-12-14 19:03:04 -05:00
termwidget.py Major work on the command line tool. Version check on the new website. 2014-09-21 21:51:50 -04:00

README.md

FlatCAM: 2D Post-processing for Manufacturing

(c) 2014 Juan Pablo Caram

FlatCAM is a program for preparing CNC jobs for making PCBs on a CNC router. Among other things, it can take a Gerber file generated by your favorite PCB CAD program, and create G-Code for Isolation routing. But there's more.

This fork is mainly for improving shell commands:

example of shell flow:

new open_gerber /home/sopak/kicad/ThermalShield/Gerber/ThermalPicoShield2-Margin.gbr -outname Margin open_gerber /home/sopak/kicad/ThermalShield/Gerber/ThermalPicoShield2-B_Cu.gbr -outname BottomCu open_excellon /home/sopak/kicad/ThermalShield/Gerber/ThermalPicoShield2.drl -outname Drills

mirror BottomCu -box Margin -axis X

mirror Drills -box Margin -axis X

cutout Margin -dia 3 -margin 0 -gapsize 0.6 -gaps lr

isolate BottomCu -dia 0.4 -overlap 1

drillcncjob Drills -tools 1 -drillz -2 -travelz 2 -feedrate 5 -outname Drills_cncjob_0.8

drillcncjob Drills -tools 2 -drillz -2 -travelz 2 -feedrate 5 -outname Drills_cncjob_3.0

cncjob BottomCu_iso -tooldia 0.4

cncjob Margin_cutout -tooldia 3

write_gcode BottomCu_iso_cnc /home/sopak/kicad/ThermalShield/Gerber/ThermalPicoShield2-B_Cu.gbr_iso_cnc.ngc

write_gcode Margin_cutout_cnc /home/sopak/kicad/ThermalShield/Gerber/ThermalPicoShield2-Margin.gbr_cutout_cnc.ngc

write_gcode Drills_cncjob_3.0 /home/sopak/kicad/ThermalShield/Gerber/ThermalPicoShield2.drl_Drills_cncjob_3.0.ngc

write_gcode Drills_cncjob_0.8 /home/sopak/kicad/ThermalShield/Gerber/ThermalPicoShield2.drl_Drills_cncjob_0.8.ngc