Introduction to Printed Circuit Boards
From the PCB curriculum
Introduction to Printed Circuit Boards
TL;DR
Printed Circuit Boards (PCBs) are the foundational platforms that mechanically support and electrically connect electronic components using conductive pathways. They're essential for almost all modern electronics, from your phone to complex industrial systems, providing reliability and efficient manufacturing. Understanding PCBs involves knowing their layers, materials, and how components are attached.
1. The Mental Model
Think of a PCB as a multi-story city grid for electronic components. Each layer is like a floor, with "roads" (traces) connecting "buildings" (components) and "elevators" (vias) moving signals between floors.
2. The Core Material
A Printed Circuit Board (PCB) is a laminated sandwich structure of non-conductive (insulating) material with conductive (copper) pathways etched onto or between its layers. Its primary purpose is to mechanically support electronic components and electrically connect them without using individual wires, making circuits compact, reliable, and manufacturable.
What's a PCB Made Of?

Photo by Tima Miroshnichenko on Pexels
At its heart, a PCB consists of several fundamental elements:
- Substrate (Dielectric): This is the insulating material that forms the body of the PCB. The most common material is FR-4 (Flame Retardant 4), a fiberglass-reinforced epoxy laminate. It provides mechanical strength and electrical insulation between conductive layers.
- Copper Traces: These are the conductive pathways etched from a copper foil layer. They act like wires, carrying electrical signals and power between components.
- Solder Mask: A thin polymer layer applied over the copper traces (except for the pads where components are soldered). It protects the copper from oxidation, shorts, and prevents solder bridges during assembly. It usually gives the PCB its characteristic green color.
- Silkscreen: A non-conductive ink layer printed on top of the solder mask. It's used for component designators (like "R1", "C5"), polarity indicators, logos, and other helpful markings for assembly and troubleshooting.
- Pads: Exposed areas of copper on the surface (not covered by solder mask) where components are soldered.
- Vias: Small drilled holes that are plated with copper, connecting traces between different layers of the PCB. They're like electrical "tunnels" through the board.
PCB Layers

Photo by Nic Wood on Pexels
PCBs aren't just flat sheets; they're often made of multiple layers to allow for more complex routing and component density.
- Single-Sided PCBs: Have one conductive copper layer, typically on the bottom. Simple and low cost.
- Double-Sided PCBs: Have copper layers on both the top and bottom, connected by vias. More complex than single-sided.
- Multi-Layer PCBs: Have more than two conductive layers, separated by insulating dielectric layers and laminated together. Common layer counts are 4, 6, 8, or more, enabling very dense and complex circuits. The inner layers are often used for power planes (VCC) and ground planes (GND) to provide stable power distribution and reduce electrical noise.
graph TD
A["Silkscreen (Top)"] --> B["Solder Mask (Top)"]
B --> C["Copper Trace/Pad (Top Layer)"]
C --> D["Prepreg/Dielectric (Insulator)"]
D --> E["Copper Plane (Inner Layer 1 - e.g., Ground)"]
E --> F["Core (Insulator - e.g., FR-4)"]
F --> G["Copper Plane (Inner Layer 2 - e.g., Power)"]
G --> H["Prepreg/Dielectric (Insulator)"]
H --> I["Copper Trace/Pad (Bottom Layer)"]
I --> J["Solder Mask (Bottom)"]
J --> K["Silkscreen (Bottom)"]
style A fill:#fff,stroke:#333,stroke-width:2px,color:#000
style B fill:#8BC34A,stroke:#333,stroke-width:2px,color:#000
style C fill:#FFC107,stroke:#333,stroke-width:2px,color:#000
style D fill:#CFD8DC,stroke:#333,stroke-width:2px,color:#000
style E fill:#FFC107,stroke:#333,stroke-width:2px,color:#000
style F fill:#9E9E9E,stroke:#333,stroke-width:2px,color:#000
style G fill:#FFC107,stroke:#333,stroke-width:2px,color:#000
style H fill:#CFD8DC,stroke:#333,stroke-width:2px,color:#000
style I fill:#FFC107,stroke:#333,stroke-width:2px,color:#000
style J fill:#8BC34A,stroke:#333,stroke-width:2px,color:#000
style K fill:#fff,stroke:#333,stroke-width:2px,color:#000
Figure 1: Common Multi-Layer PCB Stackup
Component Mounting

Photo by Nic Wood on Pexels
There are two main ways to attach components to a PCB:
- Through-Hole Technology (THT): Components have leads that pass through drilled holes in the PCB and are then soldered to pads on the opposite side (or same side, if leads are bent). This method is robust for large components but takes up more space and requires drilling.
- Surface Mount Technology (SMT): Components (Surface Mount Devices, or SMD) are smaller and designed to be placed directly onto pads on the surface of the PCB. They're soldered using reflow ovens. SMT allows for much higher component density and automation, making it the dominant method for modern electronics.
3. Worked Example
Imagine you're designing a simple LED circuit.
- Components: You have an LED, a current-limiting resistor, and a power source connector.
- Schematic: You draw a schematic diagram showing how these three components are electrically connected. For example,
Power --> Resistor --> LED --> Ground. - Layout: You then translate this schematic into a physical layout on a PCB. You'd place the power connector on one edge, the resistor near it, and the LED where you want it to shine.
- Traces: You'd draw copper traces on the PCB layout software (like KiCad or Eagle) to connect the power connector's positive terminal to one end of the resistor, the other end of the resistor to the LED's anode, and the LED's cathode to the power connector's ground terminal.
- Layers: For this simple circuit, you might only need a single-sided or double-sided board. If it's single-sided, all traces would be on one surface. If double-sided, you might run power on the top and ground on the bottom, with vias connecting the LED and resistor to the appropriate layers.
- Manufacture: You send the design files to a PCB manufacturer. They etch the copper, drill holes, apply solder mask and silkscreen.
- Assembly: You then solder the actual resistor, LED, and connector onto the manufactured board using the pads and silkscreen markings as guides. When powered up, the LED lights!
4. Key Takeaways
- PCBs mechanically support components and electrically connect them with conductive pathways.
- They are typically made from FR-4 substrate, copper traces, solder mask, and silkscreen.
- PCBs can have multiple layers, enabling complex and compact circuit designs.
- Vias are critical for connecting traces between different layers.
- Components are mounted using either Through-Hole Technology (THT) or Surface Mount Technology (SMT).
Common Mistakes to Avoid:
- Don't confuse the schematic (electrical connections) with the layout (physical placement).
- Forgetting to properly size copper traces for current, leading to overheating or voltage drops.
- Placing components too close together, making soldering difficult or causing shorts.
- Not adding silkscreen labels, making assembly and troubleshooting a nightmare.
5. Now Try It
Find an old, broken electronic device (like a toy, remote control, or charger that you're okay with taking apart). Carefully open it up and identify the PCB inside. Spend 15 minutes trying to identify:
1. The main substrate material (usually green).
2. The copper traces (often visible under the solder mask, especially if you look closely at exposed pads).
3. Examples of through-hole components (bigger components with leads going through holes) and surface mount components (smaller parts soldered directly to pads on the surface).
4. Any silkscreen markings for components or labels.
What success looks like: You can point to and name at least three different features mentioned in these notes on a real-world PCB.
Frequently asked about Introduction to Printed Circuit Boards
Get the full PCB curriculum
Clone the complete plan to your dashboard for unlimited AI-generated notes, practice quizzes, and a personalised revision schedule.
Create Free Account