---
title: Design a Compact 2-Layer PCB for a Bluetooth Wearable
siteUrl: https://logzly.com/circuitcraft
author: circuitcraft (Circuit Craft)
date: 2026-06-22T12:06:03.618376
tags: [pcb, bluetooth, wearables]
url: https://logzly.com/circuitcraft/design-a-compact-2-layer-pcb-for-a-bluetooth-wearable
---


You’ve probably seen a sleek fitness band or a tiny Bluetooth sensor and thought, “I could build that in my garage.” The truth is, a well‑planned 2‑layer board can hold a full Bluetooth stack, a battery, and a few sensors without blowing up your budget or your desk space. Let’s walk through the whole process, step by step, so you can turn that idea into a real, wearable prototype.

## Why a 2‑Layer Board Makes Sense

Most hobbyists start with a 4‑layer board because it feels safer – more copper, more ground planes, less noise. But for a wearable that fits on a wrist or a shoe, every millimeter of board thickness adds weight and cost. A 2‑layer design forces you to think smarter about placement, routing, and power management. The result is a thinner, lighter board that still meets the Bluetooth spec, as long as you follow a few disciplined steps.

## Gather Your Tools and Parts

Before you open KiCad or Eagle, make a quick checklist. Having everything at hand saves a lot of “where did I put that?” moments.

- **Bluetooth module** – I like the Nordic nRF52832 because it packs BLE, a Cortex‑M4, and a built‑in crystal.
- **Battery** – a 150 mAh Li‑Po works well for a small wristband.
- **Power‑management IC** – a simple buck‑boost like the MCP1640 keeps the voltage steady.
- **Sensors** – accelerometer, temperature, or [heart‑rate chip](/circuitcraft/prototype-a-portable-heartrate-monitor-from-scratch) depending on your project.
- **Passive components** – resistors, capacitors, a few inductors for the RF matching network.
- **Design software** – [KiCad](/circuitcraft/design-a-2-layer-pcb-in-kicad-a-complete-beginner-s-walkthrough) is free and has good footprints for tiny parts.
- **Prototype board** – a 0.8 mm FR‑4 sheet is a good starting point for size.

## Step 1: Sketch the Block Diagram

Grab a piece of paper (or a digital note app) and draw a block diagram. Put the Bluetooth module in the center, then connect the power‑management IC, battery, and each sensor. This visual map tells you how many pins you need, where the high‑speed signals go, and which parts share a common ground.

**Tip:** Keep the RF path (the antenna and its matching network) isolated from noisy digital traces. A quick doodle of the antenna footprint helps you reserve a clear area on the board later.

## Step 2: Choose the Right Footprints

Footprint size is the silent killer of compact designs. A 0402 resistor looks tiny, but if you accidentally pick a 0603 version you’ll waste precious space. In [KiCad](/circuitcraft/design-a-2-layer-pcb-in-kicad-a-complete-beginner-s-walkthrough), open the footprint library and filter by “size = 0402”. Do the same for capacitors and inductors. For the Bluetooth module, use the exact footprint the manufacturer provides – it usually includes mounting holes and keep‑out zones for the antenna.

**Personal note:** The first time I tried to cram a 0603 capacitor into a 2‑layer board, I ended up with a short that fried my module. Double‑checking footprints saved me a lot of headaches.

## Step 3: Lay Out the Board Outline

Wearables need a shape that fits the body part they’ll sit on. I start with a simple rectangle that matches the maximum dimensions of my enclosure, then round the corners with a 2 mm radius. In KiCad, use the “Edge.Cuts” layer to draw the outline. Keep the board thickness at 0.8 mm – thin enough to bend slightly, but not so thin that it cracks during soldering.

## Step 4: Place the Components

Placement is where the magic happens. Follow these rules:

1. **Put the Bluetooth module near the edge** – this gives the antenna room to radiate.
2. **Put the power‑management IC close to the battery connector** – short traces reduce voltage drop.
3. **Group sensors together** – they often share I²C or SPI buses, so a short bus length improves reliability.
4. **Keep high‑current paths wide** – the buck‑boost’s input and output traces should be at least 12 mil wide.

Use the “grid snap” feature to align parts to a 0.5 mm grid. This makes routing easier and keeps the board looking tidy.

## Step 5: Route the Power and Ground Planes

Even on a 2‑layer board you can create a solid ground plane on the bottom layer. In KiCad, fill the bottom layer with copper and then carve out “keep‑out” zones around the antenna and any high‑frequency traces. For the power rail, run a thick trace from the battery connector to the buck‑boost, then use a small “via” to connect to the top layer where the module needs VDD.

**Why a solid ground matters:** It reduces EMI (electromagnetic interference) and gives the Bluetooth radio a clean reference, which improves range and stability.

## Step 6: Route the Signal Traces

Now the fun part – drawing the wires. Keep these points in mind:

- **Keep the antenna feed line as short and straight as possible.** A 45‑degree bend is okay, but avoid 90‑degree corners.
- **Separate analog and digital signals.** If you have a temperature sensor, route its lines away from the high‑speed SPI bus.
- **Use 6‑mil trace width for most signals.** For the SPI clock, bump it up to 8 mil to keep rise times low.
- **Add a small ground stitch via every 5 mm** to tie the top and bottom ground together. This helps with return currents.

If you run out of space, consider “via stitching” – a series of tiny vias that let you hop a trace from top to bottom without adding a lot of length.

## Step 7: Add the RF Matching Network

The Bluetooth module’s data sheet will give you the values for the matching network (usually a series inductor and a shunt capacitor). Place these components right next to the antenna feed pin. Keep the loop area small – a tight loop reduces parasitic inductance and keeps the antenna tuned.

## Step 8: Run Design Rule Checks (DRC)

Before you export the Gerbers, let the software run a DRC. It will flag things like clearance violations, unconnected pins, or copper that’s too close to the board edge. Fix any errors, then run the check again. I’ve learned to treat DRC warnings as “red lights” – ignore them at your own risk.

## Step 9: Generate Gerbers and Order the Board

In KiCad, go to “Plot” and select the Gerber files for each layer (Top, Bottom, Edge.Cuts, and the solder mask layers). Double‑check the file names – some fab houses get confused if you have extra layers. I usually order from a fab that offers a 0.8 mm thickness option and a quick‑turn service; they ship the boards in two days, which is perfect for a weekend prototype.

## Step 10: Assemble and Test

When the boards arrive, start with a visual inspection. Look for solder bridges, missing components, and correct orientation of the Bluetooth module (the antenna side should face outward). Use a multimeter to verify the power rail voltage before plugging in the module.

Power up the board, flash a simple “Hello World” BLE example, and check the signal strength with a phone app. If the RSSI (signal strength) is weak, double‑check the antenna clearance and the matching network values.

## Quick Recap

- Sketch a block diagram first.
- Use the smallest reliable footprints (0402, 0603 where needed).
- Keep the antenna area clear and the feed line short.
- Solid ground plane on the bottom, power plane on the top.
- Run DRC before sending Gerbers.
- Test early, adjust the matching network if needed.

Designing a compact 2‑layer PCB for a Bluetooth wearable is a puzzle, but with a systematic approach you can fit a full BLE stack onto a board that barely bends. The next time you see a tiny fitness tracker, remember: the same steps you just read can turn your idea into a real, wearable prototype.