Open main menu

Humanoid Robots Wiki β

Building a PCB

Revision as of 05:44, 30 April 2024 by Matt (talk | contribs) (space)

Walk-through and notes regarding how to design and ship a PCB.

Contents

Designing with atopile

atopile enables code-defined pcb design. Follow atopile's getting-started guide to set up your project.

An example atopile PCB project is provided by the K-Scale Labs team here

Importing into KiCad

After completing the atopile setup and building your atopile project, you will need to import the build into KiCad.

To import your design into KiCad,

  1. Open <your-project>/elec/layout/default/<your-project-name>.kicad_pro with KiCad.
  2. Delete all of the pcb board outlines you do not want to have (By default there are 3 available options to choose from)
  3. Go to File->Import->Netlist...
  4. In the Import Netlist pop-up, select your .net file to import, typically located at <your-project>/build/default.net
  5. Click "Load and Test Netlist"
  6. Click "Update PCB"
  7. Click "Close"
  8. Select anywhere on the screen where to place the components (you can move them later)

atopile automatically connects the necessary components together, but you will still have to manually create your preferred layout and draw the connecting traces/routes (KiCad makes this process very simple)

Connecting Traces

After positioning your board components, you will have to connect them using the KiCad router tool, seen circled in red below:

 
KiCad Trace Tool

To use this tool, simply select the router tool icon on the right-hand side of the KiCad program window and select a components pin to begin.


The KiCad program will give you a visualization of which components you should trace towards.


Connect all traces and verify no components have been left unconnected.


Exporting Files for Manufacturing

There are multiple files required to get a PCB manufactured. Each manufacturer may have different requirements.

For this example, we will be using JCLPCB's PCB manufacturing services

JCLPCB Requires:

  • Gerber Files
  • Drill Files
  • Map Files
  • BoM
  • CPL

Exporting Gerber, Drill, and Map Files

For a detailed instruction follow JLCPCB's KiCad export instructions here


Exporting BoM (Bill of Materials)

atopile will automatically make the BoM for you, although you may need to reformat the header & information to meet the requirements of your manufacturer.

The JLCPCP format can be seen below:

 
JLCPCB BOM Requirement

atopile's BoM file can be found in the build directory, typically called "default.csv" (<your-project>/build/default.net)

Exporting CPL (Component Placement List)

KiCad allows for quick and easy CPL exporting, although you will have to reformat your information to fit your manufacturers requirements

To export a CPL from your KiCad project:

  1. Go to File -> Fabrication Outputs -> Component Placement
  2. Select proper output directory
  3. Use CSV, Millimeters, and Separate files for front, back settings:
 
Settings for CPL Generation in KiCad
  1. Click "Generate Position File"
  2. Fix output file to match your manufacturers requirements (JLCPCB example provided)
 
JLCPCB CPL Example Format



Ordering a PCB

Trusted low production PCB manufacturing companies:

  • PCBWay
  • JLCPCB
  • SeeedStudio

Further PCB manufacturers and price comparisons for your specific project can be found here

Related Articles