Difference between revisions of "PCB"

From Bobs Projects
Jump to: navigation, search
 
(10 intermediate revisions by one user not shown)
Line 1: Line 1:
 
[[Category:Electronics]]
 
[[Category:Electronics]]
Printed Circuit Board related stuff
+
[[Category:EDA]]
 +
Printed Circuit Board (PCB) and Electronic design automation (EDA) related stuff.
  
 
== Design software ==
 
== Design software ==
 
+
* [[Eagle|Eagle]] EDA software from [http://www.cadsoft.de CadSoft]
 
* [http://www.gpleda.org/ gEDA] - GNU EDA software
 
* [http://www.gpleda.org/ gEDA] - GNU EDA software
 +
* [http://kicad.sourceforge.net/ KiCAD]
 +
 +
==PCB software==
 +
PCB is also the name of an open source PCB layout program, available from [http://pcb.geda-project.org/ pcb.geda-project.org].
 +
 +
Documentation at: [http://pcb.geda-project.org/pcb-cvs/pcb.html Pcb].
 +
 +
===Building from source===
 +
(on [[Debian]]/Ubuntu-)
 +
<pre>
 +
sudo apt-get install build-essential git gettext intltool flex freeglut3-dev texinfo texlive-latex-recommended libgd2-xpm-dev
 +
mkdir ~/src
 +
cd ~/src
 +
git clone git://git.geda-project.org/pcb.git
 +
cd pcb
 +
./autogen.sh
 +
./configure --prefix=$HOME/local
 +
make
 +
make install
 +
</pre>
  
 
== Fabricators ==
 
== Fabricators ==
 +
* [http://www.hackvana.com Hackvana] - Chinese/Australian/US-based site (see also [https://docs.google.com/document/d/1p6FH25ltGpzJQ5_8fbflDukqEKghiEcpuhJpngth2Is/edit?pli=1 PCB Q&As])
 
* [http://www.pcbzone.net PCBZone] - New Zealand based manufacturer
 
* [http://www.pcbzone.net PCBZone] - New Zealand based manufacturer
* [http://www.seeedstudio.com/depot/fusion-pcb-service-p-835.html?cPath=185 Fusion PCB Service] from [[SeeedStudio]]
+
* [http://www.seeedstudio.com/depot/fusion-pcb-service-p-835.html?cPath=185 Fusion PCB Service] from [[Seeed Studio]]
  
== External links ==
+
==See also==
 +
* [[RS-274X]] (the Extended Gerber file format)
  
 +
== External links ==
 +
* [[wikipedia:Comparison_of_EDA_Software|Comparison of EDA Software]] at Wikipedia
 
* [[wikipedia:Geda| gEDA]] at Wikipedia
 
* [[wikipedia:Geda| gEDA]] at Wikipedia
 +
* [[wikipedia:Kicad| Kicad]] at Wikipedia

Latest revision as of 10:34, 13 September 2012

Printed Circuit Board (PCB) and Electronic design automation (EDA) related stuff.

Contents

Design software

PCB software

PCB is also the name of an open source PCB layout program, available from pcb.geda-project.org.

Documentation at: Pcb.

Building from source

(on Debian/Ubuntu-)

sudo apt-get install build-essential git gettext intltool flex freeglut3-dev texinfo texlive-latex-recommended libgd2-xpm-dev
mkdir ~/src
cd ~/src
git clone git://git.geda-project.org/pcb.git
cd pcb
./autogen.sh
./configure --prefix=$HOME/local
make
make install

Fabricators

See also

  • RS-274X (the Extended Gerber file format)

External links