PCB CNC: Unterschied zwischen den Versionen

aus Metalab Wiki, dem offenen Zentrum für meta-disziplinäre Magier und technisch-kreative Enthusiasten.
Zur Navigation springenZur Suche springen
(internal link)
(45 dazwischenliegende Versionen von einem anderen Benutzer werden nicht angezeigt)
Zeile 1: Zeile 1:
 
==Introduction==
 
==Introduction==
 +
 
CNCs can facilitate in the creation of PCBS:
 
CNCs can facilitate in the creation of PCBS:
 
* Manual etching and then using CNC to drill automatically.
 
* Manual etching and then using CNC to drill automatically.
Zeile 5: Zeile 6:
 
* Automated isolation routing: From a PCB some surface parts are milled away, so that the connection copper area are left isolated.
 
* Automated isolation routing: From a PCB some surface parts are milled away, so that the connection copper area are left isolated.
  
Currently, all three steps are working on the [[http://metalab.at/wiki/Geil-o-mat Geilomat]].  
+
Currently, all three steps are working on the [[Geil-o-mat|Geilomat]].  
[[Bild:cncpcb.png|thumb|400px|A rather badly isloated and drilled PCB done on the Geilomat. One can get much better results.]]
+
 
  
 
For the isolation, there is the normal approach, where all contours of copper areas are milled.
 
For the isolation, there is the normal approach, where all contours of copper areas are milled.
[[Bild:normalpcb.png|thumb|400px| A normal milled PCB, using pcb-gcode eagle plugin]]
 
 
However much faster results can be obtained by milling the minimal path necessary to create the PCB-topology.
 
However much faster results can be obtained by milling the minimal path necessary to create the PCB-topology.
[[Bild:visolate.png|thumb|400px| A voronoi milled PCB (left), a normally milled PCB, and a traditional PCB]]
 
  
== Metaboard.sh ==
+
Some results are given in the soup of the [http://geilomat.soup.io/ Geilomat]
Metaboard is a bash shell script, that will automatically create cnc-paths in the form of gcode files. The starting point is the eagle .brd file.
 
It calls a couple of external programs:
 
* [http://www.cadsoft.de/ Eagle]: to output the gerber files of the top and bottom layer
 
* eagle: to call an ulp-program "drillbernhard.ulp" that outputs the drilling and cutting paths.
 
* [http://www.mit.edu/~vona/Visolate/Visolate-info.html Visolate]: To create the isolation paths.
 
* [http://code.google.com/p/grecode/ grecode] To mirror the board for second side. (Grecode was created especially for metaboard.sh by --[[Benutzer:Bkubicek|Bkubicek]] 09:55, 26. Jul. 2010 (CEST))
 
  
While these are called, a couple of windows will pop up and hopefully disappear again.  
+
* 0805 SMD resistors work fine, although the solder locations are not visible any more.
 +
* It is possible to have one wire between the 2.54mm piched pins.
 +
* Also 1.27mm pitch SMD chips are usually ok.  
  
Possible issues:
+
== Examples ==
* Eagle sometimes stays on top: just close the opened .brd, and load your .brd again using the menu. If have no clue why this happens.
+
<gallery widths=400px heights=300px perrow=2>
* It might be necessary to have a parent project file in the same directory?
+
Bild:nicerpcb.png|A normal isolated result.
 +
Bild:cncpcb.png|A rather badly isloated and drilled PCB done on the Geilomat. Short circuiting copper flakes are visible on the center left.
 +
Bild:normalpcb.png| A usually milled PCB, using pcb-gcode eagle plugin. This can be done by metaboard3.sh -tight
 +
Bild:visolate.png|A voronoi milled PCB (left), a normally milled PCB, and a traditional PCB. [http://www.mit.edu/~vona/Visolate/Visolate-info.html Source]
 +
</gallery>
  
 +
==Time Consumption==
 +
For a complete, dense EuroPCB, expect about one hour of total time:
 +
* 10 minutes for preperation, mounting and setup.
 +
* 15 minutes for drilling/cutting.
 +
* 20 minutes for the isolation of the bottom layer.
 +
* 5 minutes for flipping/remounting/aligning
 +
* 20 minutes for the top isolation
 +
* 2 minutes for manual overworking the board.
  
=== Usage ===
+
For an arduino shield, expect about 30 minutes:
The workflow splits into the following points:
+
* 10 minutes for preperation, mounting and setup.
* Preperation: create an eagle brd file, copy it
+
* 5 minutes for drilling/cutting.
* Metaboard.sh: create the gcode files for the geilomat
+
* 5 minutes for the isolation of the bottom layer.
* Setup: mount the board in the geilomat, insert a suitable mill head.
+
* 5 minutes for flipping/remounting/aligning
* EMC-setup: home the machine, "touch off"/set coordinate system so milling will be on the actual board
+
* 5 minutes for the top isolation
* Bottom layer:
+
* 1 minutes for manual overworking the board.
** drilling and cutting
+
=== Pros/Cons ===
** Isolation-milling
+
Pros:
For single sided boards, the process stops here.
+
* Quite Faster than manual UV-exposing, etching and drilling.
* Flipping the board, mounting it.
+
* Cool
* Top layer:
+
* No chemicals
** Loading the top layer debugging file.  
+
* Good for high currents, as wired are wide.
** Aligning: Rotate and shift the top layers using grecode, so that the new gocde matches the mounted board.
+
* Cheaper PCB material. (Same area approx 50% the price)
** Isolate the top.
+
* PCBs of up to 30x20 cm. However, flatness is problematic.
 +
Cons:
 +
* If the board is not mounted completely flat, the isolation might be not deep enough, and hence there are short circuits.
 +
* Sometimes, flakes of copper short circuit neighboring copper areas. Usually at corners. A knife helps.
 +
* Dust.
 +
* Loud.
 +
* Capacity between adjacent copper areas.
 +
* Hotter soldering is required, as there are no thermal pads.
  
 +
== Metaboard*.sh ==
 +
Metaboard are some bash shell scripts, that will automatically create cnc-paths in the form of gcode files. The starting point is the eagle .brd file.
 +
Download of the files: [http://kariert.org/files/metaboard3/ Here]
  
Create yourself a directory in ~/gcodes/ and copy your .brd file there.
+
Usage: metaboard3.sh <options> filename
Then open up a shell window, move to the directory call
+
filename: eagle brd file to process
  metaboard.sh yourboard.brd
+
-double: create a double sided gcode
 +
  -0.8:    use a 0.8mm mill head instead of a 0.6
 +
-tight:  only offset by a distance of 0.3 mm
 +
-filled: the eagle board file has a filed dimension area instead of lines
  
If all goes well, you will obtain a lot of *.ngc files, that contain [[http://en.wikipedia.org/wiki/G-code Gcode]] for the CNC process. Also, a tmp directory will be created, where there are even more files.
+
It calls a couple of external programs:
The files in the original directoy are:
+
* [http://www.cadsoft.de/ Eagle]: to output the gerber files of the top and bottom layer
* xxx_top.ngc: The top layer isloation paths.
+
* <del>eagle: to call an ulp-program "drillbernhard.ulp" that outputs the drilling and cutting paths.</del>
* xxx_bottom.ngc: The bottom layer isloation paths.
+
* [http://www.cadsoft.de/ Eagle]: to output the excellon drill files.
* xxx_drillcuttop.ngc: The top layer drilling and cutting.
+
* <del>[http://www.mit.edu/~vona/Visolate/Visolate-info.html Visolate]: To create the isolation paths. We use an unreleased version, that is scriptable.</del>
* xxx_drillcutbottom.ngc: The bottom layer drilling and cutting.
+
* Meanwhile, [http://sourceforge.net/projects/pcb2gcode/ pcb2gcode] was adopted and is used.
* xxx_debug.ngc: A file so you can view the content of all the other files at once, to check for errors, or measure coordinates..
+
* [http://code.google.com/p/grecode/ grecode] To mirror the board for second side. (Grecode was created especially for metaboard.sh by --[[Benutzer:Bkubicek|Bkubicek]] 09:55, 26. Jul. 2010 (CEST))
  
===Preperation===
+
While these are called, <del>a couple of windows will pop up and hopefully disappear again.</del> only shell output will be produced. you will get some debug images also in the current directory.
  
Then you start [[linuxcnc.org/ EMC]] on the computer next to the geilomat. You load the xxx_debug.ngc file and look at it really intense to see weather it is correct.
 
  
Then you press the home-all bottom, and the mill will move to its home position on the close left corner in front of you.
 
  
Mount the board using the thin double sided tape and stick it to the flat-milled piece of wood.
 
  
You want to insert a 0.8 mm mill-head in the Kress (a drill might break in the the sidewards cutting movement).
 
Then you move to one location just above the mounted PCB, and set the working coordinate system using "touch off" in X and Y. For the Z, you move next to the PCB, and go tiny bit deeper than the lower board edge, and touch off at the lowest z-coordinate value, which should be -2.5 mm. For security, move up so that the mill can move freely thereafter.
 
  
===Bottom Layer===
+
== Usage ==
 +
The workflow splits into the following points:
 +
* Preperation: create an eagle brd file, copy it
 +
* Metaboard*.sh: create the gcode files for the geilomat
 +
** For the most current worflow use metaboard3.sh . It will require a 0.6 mm mill head, which is the best, as small IC holes are possible, and the tool length is so small that little sidewards forces are created. Hence, mill speed is larger than for 0.8mm tools.
 +
* Setup:
 +
** mount the board in the geilomat using double sided sticky tape.
 +
** On the flat milled wood area.
 +
**Which should be de-dusted first.
 +
**Double sided tape should not overlap, as this creates 0.1mm height difference.
 +
**Insert a suitable tool. Either a sharp Gravierstichel .
 +
[[Datei:gravierstichel.jpg]]
 +
* EMC-setup: home the machine "home all", "touch off"/set coordinate system so milling will be on the actual board
  
Load the xxx_bottomdrillcut.ngc file.
+
Bottom layer:
 +
** Isolation-milling: use the *back.ngc file created by metaboard3.sh
 +
** drilling: use the *drill*.ngc file created by metaboard3.sh
 +
** and cutting: use the *outline*.ngc file created by metaboard3.sh.
  
For the drilling, set the Kress to speed "5".
+
For single sided boards, the process stops here.
 
+
Double sided boards are more sophisticated:
Close the geilomat-latch. Turn the spindle on in EMC so that the Kress rotates. Press the play button and watch out for problems. Stop with the Stop button, or with F1. After an emergency off with F1, you maybe have to reposition the machine. Try not to be overwhelmed by all the noise and awesomeness.
+
* Flipp the board, mounting it in any usefull position.
 
+
* Top layer:
After the drilling and cutting has finished, move the mill so you can change the mill-head to a 0.1mm-0.3mm 30°-45° "Gravierstichel".Then, right next to the side of the board, or onto an hole, and touch off Z so that zero is ~0.3mm underneath the surface. Check the flatness of the board, and if there are problems, move deeper into the board.
+
* note down two drill hole coordinates from the drill file, in mm units.  
 
+
* navigate using the joypad  to the holes location on the flipped mounted PCB.  Write down the coordinates of the special holes.
Load the xxx_bottom.ngc file. Isolate the bottom.
+
* call "grecode -align x1 y1 x2 y2  X1 Y1 X2 Y2 *front*.ngc > tmp.ngc" to rotate and shift. Maybe you have to change the signs of the x1 and x2, depending of the pcb2gcode version you use.
 
+
* Loading the tmp.ngc file just created
===Top layer===
+
* check if the gcode is now aligned with the pcb.
 
+
* Isolate the top.
Then remove the board, remove the sticky tape, and clean the surface a bit. Mount a new batch of tape to the milled surface, and glue it onto the wood so that you see the to-be top layer.
 
 
 
load the xxx_debug file.
 
Define two positions on the board that you identify both on the mounted board and the in the software. Only drill holes or cut-corners on the flipped top surface are suitable !
 
Read the coordinates of this points in EMC by clicking at the line and reading the X-Y coordiates in the gcode-text-view. Write them down.
 
 
 
 
 
Move the mill to the same locations, and write down the coordinates displayed in the 3d-window.
 
 
 
Open a konsole, call with the inserted coordinates:
 
grecode xxx_top.ngc -o xxx_topnew.ngc -overlay physicalPointAx physicalPointAy physicalPointBx physicalPointBy  GcodePointAx GcodePointAy GcodePointBx GcodePointBy
 
This will produce a shift-rotated gcode file xxx_topnew.ngc.
 
Touch off the Z-height to a suitable value.
 
Load xxx_topnew.ngc and isolate the top.
 
 
 
----
 
==== Metaboard background info ====
 
 
 
This is the manual workflow, that is now obsolete as most steps are done by metaboard.sh.
 
 
 
 
 
The PCB have to be put on a plain-milled surface of at least 3 mm thickness, as we are drilling.
 
The slightest bend (0.2 mm) in the PCB will probably move the "Gravierstichel" out of the plane where it would isolate.  
 
You need a 0.6 or 0.8 mm drill with a mounting diameter suitable for the Kress-"Spannzange", probably 3mm or 1/8 inch=3.1something.
 
 
 
We will create three ngc-files, one for the isolation, one for the drilling, and one for the final cutting. They will be glued together in one ngc file to align them graphically using ''Axis''.  
 
  
* Prerequisites:
+
Removing the boards works best by using a twist motion around the z-axis. A brush should be nearby to clean the grooves.
** download [http://www.mit.edu/~vona/Visolate/Visolate-info.html Visolate]
+
== Hints ==
** On Windows, that is
 
** create a shortcut, respecting your paths, with the target ""C:\Program Files (x86)\Java\jre1.6.0_07\bin\java.exe" -Xmx1024000000 -jar C:\Users\bkubicek\Visolate.jar" and the working directory "C:/Users/bkubicek/Documents/eagle/LEDlampe/"
 
** download and install [[https://java3d.dev.java.net/binary-builds.html java3d]]
 
** save [[Bild:drillbernhard.ulp.txt]] into your eagle/ulp directory without the .txt extension. Its an ugly hack of the next original ulp...
 
** save [[Bild:gcode.ulp.txt]] into your eagle/ulp directory without the .txt extension.
 
  
* Create the Eagle board. Route only on Bottom Layer.
+
=== VIAS===
* Output using the cam-processor, using the "GERBER_RS274" device, and '''only''' the layers "bottom","pads", "vias". Filename gerber_boardname.
+
[[Datei:08ernieten.jpg|thumb|400px| larger "Kupferhohlnieten" ]]
* Output using File->RUN->(ulp-directory)->drillbernhard.ulp  . Layer "bottom", Mill and cut deaktivated, drill active,outputfile "drill_boardname.ngc"
+
[[Datei:06ernieten.jpg|thumb|400px| smaller "Kupferhohlnieten"]]
 +
Milled vias form no automatic connection between top and bottom. You can solder them using a small copper wire. Or the magical Kupferhohlnieten.
  
* Output using File->RUN->(ulp-directory)->gcode.ulp  . Layer "bottom", Mill and drill deaktivated, cut active,outputfile "cut_boardname.ngc", other parameters are nearly irrelevant.
+
If you change the diameter of your vias to 0.8, you can use the 0.6 inner diameter "Kupferhohlnieten". if you have a double side-connected pin of you 0.7 mm you might want to use a 1mm hole, to use the larger "hohlnieten", where you can then insert a 0.7mm pin.
  
* Then start Visolate, load the gerber file, make if full screen. press Fit. Fix Topology. Make toolpaths. Output file as "isolate_boardname.ngc"
+
Pins of through-hole mounted devices also do not form automatic top-bottom connections. This especially frustrating with the eagle autorouter, because I found no way of turning this off. Sometimes you can compensate by soldering also on the top side of the part, but very often there is really no space for that. Best thing is to manually overwork the board in eagle.
  
* Then comes the joining of the three ngc files: Create a new ngc file starting with
+
[[Datei:goodpad.png|center|thumb|400px|How to make your solder easier.]]
M8 ; turn on spindle ; adjust to your mill
 
F450
 
G90
 
G21
 
G0 Z2.54 ; move up to 0.1 inch above
 
G0 X-0.24 Y-0.24  ;change this to align the drill holes with the the isolation path
 
G20
 
;; end head
 
then add the content of isolate_boardname.ngc without the m5 m3 tail. The isolation has relative coordinates, so we have to set a proper starting location via the previous head. Also, moving to the assumed Z=0 position would already mill the board, so we have to change the first Z move.
 
comment out the first move to Z-0.01
 
it could look something like this
 
G20
 
G17 G40 G49 G80
 
G91
 
G1 Z0.1
 
G0 X0.10814 Y0.28534
 
;G1 Z-0.1 ;; uncommented t
 
G1 X0.00392 Y0
 
;; end isolate
 
insert a commented line with an end program.
 
; G0 Z20 M2 ; program end to manual tool-change to drill
 
after the isolation we will insert the content of drill_boardname.ngc
 
adjust the variables posdown to -2.1 posup to 1, feedown to 100,feedup to 200
 
after the cutting, create some blank lines and insert a section of cut_boardname.ngc, namely the part between (Start cutting wires) and (finished). This movements cut out the pcb from the surrounding.
 
Maybe you have to invert all Y coordinates because of the mirroring
 
  
 +
=== Routing ===
 +
While the eagle autorouter tries to bundle wires closely together, for voronoi shaped pcbs, this is not so optimal.
 +
You can still use the autorouter, however I would recommend it only on the bottom layer. I use a 12.5 mil routing grid usually, and * for bottom N/A for top.
 +
Then I move the wires around, so that the sidewards distance is maximized. This is done by having arbitrary diagonals, and successively moving outer wires further outside.
  
The complete file then should have some head, the isolation, the drilling and the cutting.
+
[[Datei:brdgoodpad.png|thumb|center|800px| Example of good (not really good, but sufficient) and bad wire placement". It is not a very good example, I will try to produce if there is time]]
  
* Open this ngc file in axis, and adjust the relative position of the drills to the isolation by the G0 X Y in the head, saving and reloading in axis.
+
=== Mounting Holes ===
 +
Currently PCB2Gcode does not respect mounting holes, meaning that it would grow the wires possibly in a way that two different signals could be short-circuited by the screw. To prevent this, place a bottom wire-arc around the screw. Then it gets it's own "pad".
  
* Check if whether the board is in a right orientation or if it needs to be mirrored. This can be achieved by my gcode -filters: http://www.linuxcnc.org/images/fbfiles/files/grecode.zip  , see also this [http://www.linuxcnc.org/component/option,com_kunena/Itemid,20/func,view/catid,38/id,2288/limit,6/limitstart,12/lang,english/#2448 forum post]
+
=== Isolation Distances ===
 +
If you happen to work with larger voltages, you need isolated gaps on the PCB. I would do that by drawing a filled polygon on the bottom layer, or a group of overlapping or connected wires, as if the isolation were a wire.
 +
After the milling, I would use a sharp knife to lift the copper from the board at a corner, and peel it off. If you know the trick, it works quite well.
  
* after all is good, remove the commend right before the drilling, to have the the program stop there. Reload in axis. Insert a 30 Degree 0.1 or 0.2 mm "Gravierstichel", home the machine, touch off at a suitable location, and start the program.
+
[[Datei:peeledpcb.png|thumb|center|600px|A peeled off PCB. In this case, it is not an actual isolation distance, but just for the screws. You see here that I needed to peel off multiple areas. If I had connected the individual regions with overlapping wires, I could have saved some time.]]
* If the isolation is not deep enough, touch off z in lower height, and restart.
 
Then Change to a 0.6 mm drill with a 3.12mm 1/8 inch holing diameter, touch of Z again, and re-insert the comment right before the drilling.
 
* Reload in Axis, scroll to the line right before the drilling, right click->run from here.
 
* do all the drilling and sidewards cutting.
 
  
 +
==Links==
 +
[http://millpcbs.com/ PCB milling]
  
 +
[http://blog.makezine.com/archive/2010/07/voronoi_mapped_pcbs_using_visolate.html Hello, Make Magazine!]
  
* if you really want things to be perfect, you could locate the most outwards line in the isolation, and move them deeper Z-0.1 ->Z-0.12 and the following relative up-movent as well Z0.1 ->Z0.12. By that, there will be no copper close to the cutting locations.
+
[[Kategorie:WhateverLab]]
 +
[[Kategorie:Projekte]]

Version vom 22. September 2011, 15:54 Uhr

Introduction

CNCs can facilitate in the creation of PCBS:

  • Manual etching and then using CNC to drill automatically.
  • Cutting out the board , to have round PCBs, or similar.
  • Automated isolation routing: From a PCB some surface parts are milled away, so that the connection copper area are left isolated.

Currently, all three steps are working on the Geilomat.


For the isolation, there is the normal approach, where all contours of copper areas are milled. However much faster results can be obtained by milling the minimal path necessary to create the PCB-topology.

Some results are given in the soup of the Geilomat

  • 0805 SMD resistors work fine, although the solder locations are not visible any more.
  • It is possible to have one wire between the 2.54mm piched pins.
  • Also 1.27mm pitch SMD chips are usually ok.

Examples

Time Consumption

For a complete, dense EuroPCB, expect about one hour of total time:

  • 10 minutes for preperation, mounting and setup.
  • 15 minutes for drilling/cutting.
  • 20 minutes for the isolation of the bottom layer.
  • 5 minutes for flipping/remounting/aligning
  • 20 minutes for the top isolation
  • 2 minutes for manual overworking the board.

For an arduino shield, expect about 30 minutes:

  • 10 minutes for preperation, mounting and setup.
  • 5 minutes for drilling/cutting.
  • 5 minutes for the isolation of the bottom layer.
  • 5 minutes for flipping/remounting/aligning
  • 5 minutes for the top isolation
  • 1 minutes for manual overworking the board.

Pros/Cons

Pros:

  • Quite Faster than manual UV-exposing, etching and drilling.
  • Cool
  • No chemicals
  • Good for high currents, as wired are wide.
  • Cheaper PCB material. (Same area approx 50% the price)
  • PCBs of up to 30x20 cm. However, flatness is problematic.

Cons:

  • If the board is not mounted completely flat, the isolation might be not deep enough, and hence there are short circuits.
  • Sometimes, flakes of copper short circuit neighboring copper areas. Usually at corners. A knife helps.
  • Dust.
  • Loud.
  • Capacity between adjacent copper areas.
  • Hotter soldering is required, as there are no thermal pads.

Metaboard*.sh

Metaboard are some bash shell scripts, that will automatically create cnc-paths in the form of gcode files. The starting point is the eagle .brd file. Download of the files: Here

Usage: metaboard3.sh <options> filename filename: eagle brd file to process

-double: create a double sided gcode
-0.8:    use a 0.8mm mill head instead of a 0.6
-tight:  only offset by a distance of 0.3 mm
-filled: the eagle board file has a filed dimension area instead of lines

It calls a couple of external programs:

  • Eagle: to output the gerber files of the top and bottom layer
  • eagle: to call an ulp-program "drillbernhard.ulp" that outputs the drilling and cutting paths.
  • Eagle: to output the excellon drill files.
  • Visolate: To create the isolation paths. We use an unreleased version, that is scriptable.
  • Meanwhile, pcb2gcode was adopted and is used.
  • grecode To mirror the board for second side. (Grecode was created especially for metaboard.sh by --Bkubicek 09:55, 26. Jul. 2010 (CEST))

While these are called, a couple of windows will pop up and hopefully disappear again. only shell output will be produced. you will get some debug images also in the current directory.



Usage

The workflow splits into the following points:

  • Preperation: create an eagle brd file, copy it
  • Metaboard*.sh: create the gcode files for the geilomat
    • For the most current worflow use metaboard3.sh . It will require a 0.6 mm mill head, which is the best, as small IC holes are possible, and the tool length is so small that little sidewards forces are created. Hence, mill speed is larger than for 0.8mm tools.
  • Setup:
    • mount the board in the geilomat using double sided sticky tape.
    • On the flat milled wood area.
    • Which should be de-dusted first.
    • Double sided tape should not overlap, as this creates 0.1mm height difference.
    • Insert a suitable tool. Either a sharp Gravierstichel .

Gravierstichel.jpg

  • EMC-setup: home the machine "home all", "touch off"/set coordinate system so milling will be on the actual board

Bottom layer:

    • Isolation-milling: use the *back.ngc file created by metaboard3.sh
    • drilling: use the *drill*.ngc file created by metaboard3.sh
    • and cutting: use the *outline*.ngc file created by metaboard3.sh.

For single sided boards, the process stops here. Double sided boards are more sophisticated:

  • Flipp the board, mounting it in any usefull position.
  • Top layer:
  • note down two drill hole coordinates from the drill file, in mm units.
  • navigate using the joypad to the holes location on the flipped mounted PCB. Write down the coordinates of the special holes.
  • call "grecode -align x1 y1 x2 y2 X1 Y1 X2 Y2 *front*.ngc > tmp.ngc" to rotate and shift. Maybe you have to change the signs of the x1 and x2, depending of the pcb2gcode version you use.
  • Loading the tmp.ngc file just created
  • check if the gcode is now aligned with the pcb.
  • Isolate the top.

Removing the boards works best by using a twist motion around the z-axis. A brush should be nearby to clean the grooves.

Hints

VIAS

larger "Kupferhohlnieten"
smaller "Kupferhohlnieten"

Milled vias form no automatic connection between top and bottom. You can solder them using a small copper wire. Or the magical Kupferhohlnieten.

If you change the diameter of your vias to 0.8, you can use the 0.6 inner diameter "Kupferhohlnieten". if you have a double side-connected pin of you 0.7 mm you might want to use a 1mm hole, to use the larger "hohlnieten", where you can then insert a 0.7mm pin.

Pins of through-hole mounted devices also do not form automatic top-bottom connections. This especially frustrating with the eagle autorouter, because I found no way of turning this off. Sometimes you can compensate by soldering also on the top side of the part, but very often there is really no space for that. Best thing is to manually overwork the board in eagle.

How to make your solder easier.

Routing

While the eagle autorouter tries to bundle wires closely together, for voronoi shaped pcbs, this is not so optimal. You can still use the autorouter, however I would recommend it only on the bottom layer. I use a 12.5 mil routing grid usually, and * for bottom N/A for top. Then I move the wires around, so that the sidewards distance is maximized. This is done by having arbitrary diagonals, and successively moving outer wires further outside.

Example of good (not really good, but sufficient) and bad wire placement". It is not a very good example, I will try to produce if there is time

Mounting Holes

Currently PCB2Gcode does not respect mounting holes, meaning that it would grow the wires possibly in a way that two different signals could be short-circuited by the screw. To prevent this, place a bottom wire-arc around the screw. Then it gets it's own "pad".

Isolation Distances

If you happen to work with larger voltages, you need isolated gaps on the PCB. I would do that by drawing a filled polygon on the bottom layer, or a group of overlapping or connected wires, as if the isolation were a wire. After the milling, I would use a sharp knife to lift the copper from the board at a corner, and peel it off. If you know the trick, it works quite well.

A peeled off PCB. In this case, it is not an actual isolation distance, but just for the screws. You see here that I needed to peel off multiple areas. If I had connected the individual regions with overlapping wires, I could have saved some time.

Links

PCB milling

Hello, Make Magazine!