This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| tips:pcb [2021/05/03 19:35] – [PCB with CNC] scipio | tips:pcb [2021/05/11 15:43] (current) – [flatcam] scipio | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| ====== PCB with CNC ====== | ====== PCB with CNC ====== | ||
| + | |||
| + | * [[https:// | ||
| * [[https:// | * [[https:// | ||
| Line 8: | Line 10: | ||
| * TODO online [[https:// | * TODO online [[https:// | ||
| + | |||
| + | CNC for PCB: | ||
| + | * 22000RPM | ||
| + | * V-Bit cutter 30 degree 0.2mm | ||
| + | * first pass 0.04mm | ||
| + | * second pass 0.07mm with more feed | ||
| + | |||
| ===== fritzing ===== | ===== fritzing ===== | ||
| Make electronic schema with fritzing | Make electronic schema with fritzing | ||
| + | |||
| + | |||
| + | {{ : | ||
| {{: | {{: | ||
| Line 24: | Line 36: | ||
| {{: | {{: | ||
| + | |||
| + | |||
| + | ===== flatcam ===== | ||
| + | |||
| + | |||
| + | |||
| + | |||
| + | |||
| + | setup flatcam | ||
| + | |||
| + | {{ : | ||
| + | |||
| + | |||
| + | new project | ||
| + | |||
| + | open files {{ : | ||
| + | |||
| + | bottom copper {{ : | ||
| + | |||
| + | {{ : | ||
| + | |||
| + | |||
| + | top copper {{ : | ||
| + | |||
| + | drill {{ : | ||
| + | |||
| + | contour {{ : | ||
| + | |||
| + | gcode to initialize and change tool | ||
| + | < | ||
| + | (metric millimeters) | ||
| + | G21 | ||
| + | |||
| + | (absolute positioning) | ||
| + | G90 | ||
| + | |||
| + | (piano XY) | ||
| + | G17 | ||
| + | |||
| + | (feed per minute) | ||
| + | G94 | ||
| + | |||
| + | (feed 50) | ||
| + | G01 F50.00 | ||
| + | |||
| + | (stop spindle) | ||
| + | M5 | ||
| + | |||
| + | (change tool at z25) | ||
| + | G00 Z25.0000 | ||
| + | G00 X0.0000 Y0.0000 | ||
| + | T1 | ||
| + | M6 | ||
| + | (MSG, Change to Tool Dia = 0.9000 ||| Total drills for tool T1 = 40) | ||
| + | M0 | ||
| + | G00 Z25.0000 | ||
| + | |||
| + | (feed 30) | ||
| + | G01 F50.00 | ||
| + | |||
| + | (speed 5Volt) | ||
| + | M03 S5 | ||
| + | |||
| + | |||
| + | </ | ||
| + | |||
| + | |||
| + | |||
| + | |||
| + | ====== deprecated ====== | ||
| ===== convert gerber to svg ===== | ===== convert gerber to svg ===== | ||
| Line 59: | Line 141: | ||
| < | < | ||
| ; after first G1 | ; after first G1 | ||
| - | M3 S10000 | + | M3 S5000 |
| </ | </ | ||
| ===== carbide3d ===== | ===== carbide3d ===== | ||