Electronics Fundamentals for Makers: Ohm's Law, Breadboarding, and Reading a Schematic
This site has deep guides on resistors, capacitors, transistors, and every sensor and protocol a maker is likely to reach for — but all of them assume you already know how to read Ohm's Law, size a current-limiting resistor, and turn a schematic into wires on a breadboard. This is that missing first step: the handful of relationships and habits that make every other electronics guide on this site actually usable, rather than a recipe you copy without understanding why it works.
Ohm's Law: The One Equation That Explains Almost Everything
Ohm's Law relates voltage (V, in volts), current (I, in amps), and resistance (R, in ohms): V = I × R. Rearranged, that's also I = V/R and R = V/I — three forms of the same relationship, and knowing which form to use is really just knowing which two quantities you already have.
You KnowYou WantFormula Voltage across a resistor, and its resistanceCurrent flowing through itI = V / R Current through a component, and its resistanceVoltage dropped across itV = I × R Voltage available, and current you wantResistance neededR = V / IThe most common practical use of this on any maker's bench is sizing a current-limiting resistor for an LED, and it's worth working through once by hand rather than trusting a calculator blindly, because the same math shows up constantly:
- Say you're driving a standard red LED (forward voltage ~2V, target current 15mA = 0.015A) from a 5V supply.
- The resistor needs to drop the difference between your supply and the LED's forward voltage: 5V − 2V = 3V across the resistor.
- R = V / I = 3V / 0.015A = 200 ohms. The nearest standard value (220 ohms) is the safe, conventional choice — slightly under-driving an LED is harmless, over-driving it shortens its life or kills it outright.
This exact calculation is why our LEDs guide and resistors guide both reference forward voltage and current limiting constantly — it's the same three-variable relationship every time, just with different LED forward voltages (roughly 1.8–2.2V for red, 3.0–3.4V for blue/white/UV) and different target currents.
Power: The Number That Tells You What Will Get Hot
Power in watts is P = V × I (also P = I²R and P = V²/R, algebraically the same relationship combined with Ohm's Law). This matters because it's what tells you whether a resistor, wire, or component will overheat — a resistor rated for 1/4 watt (a common default) dissipating more than that will run hot and can fail or char, and this is the calculation behind every "use at least a 1W resistor here" note you'll see in a project's parts list on this site. Checking power dissipation against a component's rating is a five-second sanity check worth doing before wiring anything that's carrying meaningful current.
Series vs. Parallel: Why Circuit Topology Changes the Math
Series (components in a single chain)Parallel (components on shared rails) CurrentSame through every componentSplits between branches, divides based on each branch's resistance VoltageSplits (drops) across each componentSame across every branch Total resistanceAdds directly: R_total = R1 + R2 + R3…Always less than the smallest branch: 1/R_total = 1/R1 + 1/R2 + 1/R3… Common maker exampleA resistor and an LED in one loop — the whole point of a current-limiting resistorMultiple LEDs each with their own resistor, sharing one supply railThe practical takeaway that trips up a lot of beginners: wiring several LEDs in series off one current-limiting resistor (rather than each with its own resistor, in parallel) means they share current unevenly if their forward voltages don't match exactly, and one LED's brightness affects the others. Giving each LED its own resistor and wiring the group in parallel — sharing the same supply rails — avoids this and is the standard approach for anything beyond a single indicator LED.
Breadboarding: Getting From Schematic to Working Circuit
A solderless breadboard's internal connections aren't obvious from the holes alone, and getting this wrong is the single most common reason a "should be working" circuit does nothing:
- Terminal strip rows. The main body of the board is split into two halves down the center gap. Within each half, each row of 5 holes (labeled a–e or f–j depending on the board) is internally connected — plug a component leg into any hole in that group of 5 and it's electrically the same node.
- The center gap matters. The two halves of a row on either side of the center gap are NOT connected to each other — this gap exists specifically so DIP chips (which have two rows of pins straddling standard chip width) can straddle it without shorting their own pins together.
- Power rails run the long way. The strips along the top and bottom edges (usually marked with red + and blue/black − lines) run the full length of the board and are NOT connected to the terminal strips automatically — you have to jumper power and ground into the rows you're using.
- Rails are often split in the middle on longer boards. Many full-size breadboards have a gap partway along the power rails too — check for this with a multimeter's continuity function before assuming one power jumper feeds the entire board.
Once wired, verifying with a multimeter (see our multimeter guide) rather than just powering it up and hoping catches wiring mistakes before they damage anything — checking continuity between two points you intend to be connected, and checking there's no continuity between two rails that should be isolated, takes seconds and saves a burned-out component.
From Breadboard to Something More Permanent
A breadboard is for prototyping and iteration — it's genuinely not reliable for anything that needs to survive being moved, vibrated, or left running unattended, since connections work loose over time. Once a circuit is working and stable:
- Perfboard/protoboard — a grid of plated holes, not interconnected like a breadboard, that you hand-solder point-to-point or with short wire jumpers. This is the natural next step for a one-off project: same layout flexibility as a breadboard, but a soldered joint that won't shake loose.
- Stripboard (veroboard) — similar to perfboard but with pre-etched copper strips running one direction, which you cut where needed with a hobby knife — faster for circuits that are mostly straight-line connections, more awkward when you need a lot of custom routing.
- A designed PCB — once you're building more than one of something, or want a clean, compact result, our KiCad PCB design guide and ordering from JLCPCB guide cover taking the same schematic all the way to a fabricated board.
Reading a Schematic
A schematic doesn't represent physical layout — component positions on the page have nothing to do with where they'll sit on a breadboard or PCB, and that disconnect is what confuses a lot of people coming from wiring diagrams. What a schematic represents is electrical connectivity: which pins are joined together, regardless of how the drawing is arranged. A few conventions to know:
- Lines are wires, dots are joins. Two crossing lines with a solid dot at the intersection are electrically connected; crossing lines with no dot are not connected, just drawn crossing for layout convenience.
- Ground symbols are all the same node. Every ground symbol on a schematic — even ones far apart on the page — represents the same electrical point. This is a shorthand to avoid drawing one wire snaking to every ground connection.
- Component symbols are mostly standardized. A zigzag or rectangle is a resistor, parallel lines of different lengths are a capacitor, an arrow-and-bar is a diode — learning the dozen or so common symbols covers the vast majority of hobby schematics.
- Reference designators tell you the part type. R1, R2… for resistors, C1, C2… for capacitors, U1, U2… for ICs, Q1, Q2… for transistors — a consistent naming convention that's worth learning since it's used in every schematic and most parts lists.
None of this replaces the component-specific guides elsewhere on this site — but Ohm's Law, power dissipation, series/parallel behavior, a working breadboard, and basic schematic literacy are the foundation every one of those guides is quietly built on. Get comfortable with these five things and the rest of the site's electronics content stops being a set of recipes to copy and starts being something you can actually reason about and modify.
Related Guides
- How to Design PCBs with KiCad: From Schematic to Gerber Export
- From Download to First Print: Complete Beginner Workflow
- From Download to Finished Print: Complete Beginner Workflow
- Preparing a Photo or JPG for Laser Engraving
- LightBurn Speed, Power, and Passes Explained
- How to Set Up a Raspberry Pi Headless with SSH and WiFi
- Arduino vs ESP32: Which Should You Use? A Practical Comparison
- CNC Router Beginner Guide: CAM Software, Toolpaths, and Your First Cut