Breadboards
Practical Tools
This article is part of the Practical Tools section â foundational reading before building your first circuit. If you're new to voltage, current, and resistance, start with What Is Electricity? first.
Every circuit you build starts as an idea that probably doesn't work on the first try. Without a breadboard, testing that idea means soldering components together â and soldering is permanent. Get a connection wrong, apply too much heat, or choose the wrong resistor, and you're desoldering everything to try again. It's slow, it damages components, and it discourages experimentation.
A breadboard solves this. Push components into holes, connect them with jumper wires, and your circuit works â no heat, no commitment, no damage. Pull everything out and the board resets. Try a component value, change it, rearrange the circuit, start over â none of it costs you anything. Every circuit on this site starts on a breadboard.
A full-size 830-point breadboard costs $5â15 and will last years. It's the first thing to buy alongside any microcontroller kit.
A full-size breadboard. Partial image: Giacomo Alessandroni, CC BY-SA 4.0.
How the Holes Connect
Look at the component area in the image â the dense grid of holes between the power rails. It's divided into a left half (columns a through e) and a right half (columns f through j), separated by the channel running down the middle. Rows are numbered starting from 1.
The internal connection pattern:
+ - a b c d e f g h i j - +
o o 1 [o]--[o]--[o]--[o]--[o] | [o]--[o]--[o]--[o]--[o] o o
o o 2 [o]--[o]--[o]--[o]--[o] | [o]--[o]--[o]--[o]--[o] o o
o o 3 [o]--[o]--[o]--[o]--[o] | [o]--[o]--[o]--[o]--[o] o o
-- marks connected holes. | is the center gap â not connected.
Inside the board, each row of five holds a metal clip. Anything inserted into a5, b5, c5, d5, or e5 is touching the same clip â the same electrical node. f5 through j5 are a separate clip on the other side of the gap.
The center gap is designed for components that intentionally span it. Integrated circuits (ICs) â small chips with a row of pins on each side â are the most common example: one row lands in columns aâe, the other in columns fâj, keeping both sides electrically separate. Tactile switches are designed the same way. The rule isn't "never cross the gap" â it's "know whether your component is meant to span it."
Power Rails
The red and blue strips along each long edge are the power rails â visible in the image as the strips running alongside the component area. Unlike the component rows, these run the full length of the board:
+rail (red stripe): your supply voltage â 3.3V, 5V, or whatever the circuit needsârail (blue stripe): ground, 0V reference
Connect power once to the rails, then use short jumper wires to bring it into the component area wherever you need it.
The Rail Break
Most breadboards â especially full-size 830-point boards â have a physical gap in the middle of each power rail. The two halves are not connected. If you have a multimeter, put it in continuity mode and probe from one end of the + rail to the other â if it doesn't beep, there's a break.
If your circuit spans the full board, bridge the gap with a short jumper. Miss this and that half of the rail won't have power, and nothing connected to it will work.
A Circuit on a Breadboard
Here's a real circuit on a breadboard â an Arduino powering components through the power rails, with jumper wires routing signals into the component area. This is the parallel switch circuit from Series and Parallel Circuits.
Notice the jumper wires carrying power and ground from the Arduino into the rails, and how each component occupies its own rows. Components sharing a row are electrically connected â no wires needed between them, just the metal clip inside the board.
Common Mistakes
Bridging the center gap with a component
The channel isn't just cosmetic â there's no connection across it. Some components are designed to span it intentionally (ICs, tactile switches), but a resistor or LED is not. If a component that shouldn't cross the gap does, you've connected the left and right halves of that row â usually creating a short you didn't intend.
Off-by-one row
Row 10 and row 11 look identical. Miscounting by one row creates a broken circuit or an accidental short. Count carefully. On large circuits, different-coloured jumper wires help track what connects to what.
Ignoring the rail break
The most common reason a circuit works on one half of the board but not the other. Test your rails once in continuity mode before trusting them.
Partially seated components
A leg pushed in at an angle may not be making contact with the internal clip. Push straight down until it stops. Intermittent connections â works when you press on it, fails when you don't â are almost always a seating problem.
Running out of row space
Each row has five holes. When a row fills up, bridge to an adjacent empty row with a short jumper. Don't force a sixth leg in â it deforms the clip and damages the board permanently.
Practice
Which holes are connected?
On a standard breadboard, which of these pairs share an electrical connection?
a5ande5a5anda6f5andj5a5andf5
Solution
- â
a5ande5â same row, same side of the gap - â
a5anda6â same column letter, different rows; columns don't connect - â
f5andj5â same row, same side of the gap - â
a5andf5â same row number but opposite sides of the center gap
Find the mistake
A circuit isn't working. Tracing the wiring: the LED's anode is in e10, its cathode is in f10, and a resistor runs from a10 to the + rail. What's wrong?
Solution
The LED straddles the center gap. e10 and f10 are on opposite sides and are not connected â the gap between columns e and f breaks the row. Both LED legs need to land on the same side of the gap. Move the LED so both legs are in a10âe10 or f10âj10, then connect to the other side with a jumper if the circuit requires it.
Rail break diagnosis
Components on one half of your board work; the other half is dead. Power and ground are confirmed good on the working side. What's the most likely cause, and how do you fix it?
Solution
The power rail break. Most full-size breadboards have a physical gap midway along each rail â the two halves are not connected. Check continuity along both the + and â rails with a multimeter in continuity mode. If either doesn't beep end-to-end, bridge the gap with a short jumper wire connecting the two halves.
Quick Recap
-
Component Rows
Holes
aâein a row are connected. Holesfâjin the same row are a separate node. The center gap separates the two halves. -
Power Rails
Red
+and blueâstrips run the length of the board. Watch for the break in the middle â bridge it with a jumper if your circuit spans both halves. -
Center Gap
Not a mistake â it's there for components designed to span it: DIP-package ICs, tactile switches, and others. The question is whether your specific component is meant to bridge it.
-
No Commitment
Pull everything out and start over. Breadboards are for prototyping. Once a circuit works, move to something permanent.
Further Reading
Visual Guides
- How to Use a Breadboard â SparkFun â photos and diagrams showing the internal clip structure
- Breadboards for Beginners â Adafruit â wire management tips for keeping circuits readable as they grow
Related Articles
- What Is Electricity? â voltage, current, and resistance: the theory behind every circuit you'll build on a breadboard
- Series and Parallel Circuits â the two wiring configurations demonstrated on the breadboard in this article
What's Next
The breadboard appears in every circuit on this site. The next step is putting it to work: Series and Parallel Circuits â two different wiring configurations built on this exact board, and why the difference between them matters for every circuit you'll ever design.