|
|
Line 1: |
Line 1: |
| == Making PCBs @ LHS == | | == Making PCBs @ LHS == |
|
| |
|
| |
|
| |
| There are way too many pages about PCBs on this wiki.
| |
|
| |
| <graphviz border='frame' format='png' >
| |
| digraph rfboard{
| |
| rankdir=TD;
| |
|
| |
| cleaning [label="Copper board cleaning",shape=box];
| |
| photoresist [label="Photo resist coat",shape=box];
| |
| resist_cure [label="Photo resist curing",shape=box];
| |
|
| |
| breadboard [label="Breadboard",shape=box];
| |
| board_layout [label="Board schematic",shape=box];
| |
| uv_exposure [label="UV exposure",shape=box];
| |
| develop [label="Develop (Tank 1)",shape=box];
| |
| etch [label="Etch (Tank 2)",shape=box];
| |
| dry [label="Dry",shape=box];
| |
| drill [label="Drill",shape=box];
| |
| solder [label="Assemble and solder",shape=box];
| |
|
| |
| breadboard-> board_layout [label="Fritzing"];
| |
| board_layout-> uv_exposure;
| |
| cleaning->photoresist;
| |
| resist_cure -> uv_exposure;
| |
| photoresist->resist_cure;
| |
| uv_exposure->develop;
| |
| develop->etch [label="Spray wash"];
| |
| etch->dry [label="Spray wash"];
| |
| dry->drill;
| |
| drill->solder;
| |
| }
| |
| </graphviz>
| |
|
| |
|
|
| |
|