Skip to main content
Version: ACS CC

KiCad setup

In this tutorial you will learn how to setup your computer for KiCad and create electric schematics.

Resources

  1. KiCad Introduction
  2. Getting started in KiCad

What is KiCad?

KiCad is a free and open-source electronics design automation (EDA) suite. It features schematic capture, integrated circuit simulation, printed circuit board (PCB) layout, 3D rendering, and plotting/data export to numerous formats. KiCad also includes a high-quality component library featuring thousands of symbols, footprints, and 3D models. KiCad has minimal system requirements and runs on Linux, Windows, and macOS.

What is a symbol?

In KiCad, a symbol refers to a graphical representation of an electronic component or device used in a schematic diagram. Symbols are used to represent different types of electronic components such as resistors, capacitors, transistors, integrated circuits, and more. Each symbol typically corresponds to a specific type of electronic component and includes graphical elements that convey information about the component's function and connections.

Symbols in KiCad are part of the schematic design phase. When you create a schematic using KiCad, you place symbols on the schematic sheet and connect them to represent the electrical connections between components. These symbols serve as a visual representation of the electronic circuit you are designing.

What is a footprint?

In KiCad and in the context of electronic design, a footprint refers to the physical layout or pattern on a printed circuit board (PCB) that corresponds to a specific electronic component's pins and package. Each electronic component, such as resistors, capacitors, integrated circuits, etc., has a specific physical shape and arrangement of pins or pads that need to be accurately represented on the PCB.

The footprint includes information about the component's pin locations, pad sizes, and other details necessary for correctly placing and soldering the component onto the PCB. Creating or selecting the appropriate footprint is crucial for ensuring that the physical components fit correctly onto the PCB and align with the electrical connections specified in the schematic.

Footprints are associated with symbols in the design process. While symbols are used in schematic capture to represent the logical or electrical connections between components, footprints are used in the layout phase to represent the physical layout on the PCB.

What is a 3D model?

In KiCad, a 3D model refers to a three-dimensional representation of a component or object used in electronic design, specifically for printed circuit board (PCB) layout and visualization. 3D models in KiCad are associated with the footprints of electronic components. These 3D models provide a realistic view of how the physical component will appear on the PCB, aiding in the design and verification process.

Installation

You can get KiCad from here for your OS.

How to add custom schematics, footprints and 3D models

KiCad comes with a standard library that has a wide variety of components. For most project you will only need to import just a bunch of specific integrated circuits or custom components. We will work with a Raspberry Pi Pico W, a development board designed around RP2040 microcontroller(MCU). KiCad's standard library has the RP2040 designs, but for the lab work we need to import the development board symbol, footprint and 3D model, as it is not included in the standard library.

Getting the Raspberry Pi Pico W KiCad files

We can get the symbol, footprint and 3D model of the development board from this git repository.

Create a directory where you want to store your downloaded design files and clone the repository there.

git clone https://github.com/bdubs-astro/Raspberry_Pi_Pico_W_Kicad_Files.git

Import the symbol

Open the Symbol Libraries manager by clicking Preferences -> Manage Symbol Libraries....

Symbol Libraries

Click the + icon and give your symbol a nickname and the path to the .kicad_sym file.

Symbol Libraries Import

info

Give your symbol an suitable nickname. This nickname will be the keyword you search for when you want to use it in your schematics.

note

You can move your .kicad_sym file to the predefined symbol directory and use the relative path as shown for the rest of the components. The predefined symbol directory is created on KiCad's installation phase.

Import the footprint

Open the Symbol Libraries manager by clicking Preferences -> Manage Footprint Libraries....

Click the + icon and give your footprint the same nickname as the symbol and the path to the design files directory.

Footprint Libraries Import

info

Giving the footprint and symbol the same nickname will automatically link them, in most cases. In some cases, due to the .kicad_sym configuration, the symbol is linked with a predefined footprint that probably is not in your footprint library. In these cases you have to manually link them.

In KiCad Project Manager click on Symbol editor and search for your symbol.

New project

Symbol editor

After selecting the symbol, click on Symbol properties icon highlighted below.

Symbol properties

In this dialog edit the footprint linked with the symbol with the one you imported.

Change footprint

Change footprint 2

Double click on the footprint -> OK in the Symbol properties dialog -> Save in Symbol editor dialog.

Import 3D model

KiCad gives us an extra feature that allows us to have an idea of how our PCB would look like. Some footprints have 3D models predefined but for custom ones we need to import them.

In KiCad Project Manager click on Footprint editor and search for your footprint. After selecting the footprint, click on Footprint properties icon highlighted below.

Footprint editor

In Footprint properties dialog go to 3D Model.

Footprint properties

Delete the old 3D model and add the path to the .step file downloaded earlier.

3D model offset

Use the Offset section to place the component in the right place.

3D model center

Click -> OK -> Save changes.

Now you are all good to go to design your first circuit with the Raspberry Pi Pico W!

How to create a new project

The first thing you do when starting a new design is to create a new project. Open Kicad, click File->New Project, browse to your desired location and give your project a name.

New project

A project contains three types of files:

  • a file with the extension .kicad_pro
  • a schematic file with the extension .kicad_sch
  • a board file with the extension .kicad_pcb.

The project files all share the name of your project.

info

A project uses the state of symbol, footprint and 3D model libraries at its creation. If you want to add new components in an existing project, in Schematic Editor and PCB Editor click on Preferences -> Manage Symbol libraries... / Manage Footprint libraries... and do the same steps as shown above.

Making your first schematic and PCB design

Now that you've finished setting up the development board files, you can try creating a very simple PCB design. Create a new project example and open the schematic editor.

To add a new symbol, use the highlighted button, or use A shortcut.

KiCad add symbol
Add symbol

In the opened dialog, search for the symbol you want to use. For this project, we will use Raspberry Pi Pico W and it will the symbol we just added.

Pick symbol
Pick symbol

Place your symbol inside the sheet borders.

To simplify the schematic, for the most common used signals like VCCV_{CC}(supply voltage) or GNDGND, we use power symbols. Click on the highlighted button or use the P shortcut.

Power symbol
Add power symbol

Pick GNDGND and place it inside the sheet borders. Connect the power signal to the GNDGND pins of the microcontroller. To connect, click on Add a wire or use the shortcut W.

If we take a look in the development board datasheet at the power chain section, we can see that the power supplied of the USB connector, VBUSV_{BUS}, which is at 5V5V as standard, is regulated by a voltage regulator at 3V33V3. Place a power symbol for VBUSV_{BUS}, 3V33V3 and a 5V5V power symbol for VSYSV_{SYS}.

warning

Even if VSYSV_{SYS} and VBUSV_{BUS} have the same value, between them there is a protection diode for reverse current that protects both the microcontroller and the USB port of your PC. Be careful to not connect this 2 pins as it will cancel the protection diode.

Power chain
Power Chain Raspberry Pi Pico

Complete the schematic by placing an LED and a resistor at any given GPIO pin.

Pico Led Schematic
LED Schematic

Save the file and open the PCB editor. You can use the button on the top bar of the Symbol editor.

Use the highlighted button to update the PCB with the changes made in Schematic editor.

Update PCB
Update PCB

You will get an error because for the resistor R1R1 and LED D1D1 there are no footprints assigned.

Footprint error
Footprint error

Go back to the Schematic and assign footprints for resistor R1R1 and LED D1D1 like in the setup tutorial. You can pick any footprint, or just paste these on footprint field in symbol properties.

  • resistor: Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P2.54mm_Vertical
  • LED: LED_THT:LED_D3.0mm

Go back to the PCB editor and try to update again.

Update PCB
Update PCB

Connect the components using the Route tracks button on the right or the shortcut X. The blue lines will guide you to connect the right pins.

Route tracks
Route tracks

KiCad offers a 3D Viewer to have a preview of how the PCB will look. Click on View -> 3D Viewer

3D View
3D View

note

For a better understanding, please read Getting Started in KiCad tutorial.