Circuit Basics for Beginners: Voltage, Current, and Resistance

Key Takeaways

  • Voltage (V) = electrical pressure; Current (I) = flow rate; Resistance (R) = opposition to flow
  • Ohm's Law: V = I × R — the most fundamental equation in electronics
  • Series circuits: current is the same everywhere; voltages add up
  • Parallel circuits: voltage is the same everywhere; currents add up
  • A multimeter is the essential diagnostic tool — learn to use it before you build anything

Voltage, Current, and Resistance: The Three Fundamentals

All electronics comes down to three quantities: voltage, current, and resistance. Understand these three and their relationship, and circuit behavior stops being mysterious.

The water analogy makes them intuitive:

Power (P, watts) = V × I — how much electrical energy is being consumed or dissipated per second.

Common Voltage Levels in Practice
1.5V — AA/AAA battery | 3.3V — Modern microcontrollers (ESP32, RP2040) | 5V — Arduino Uno, USB power, older logic | 9V — Common battery, small motors | 12V — Car battery accessories, many power adapters | 120/240V — AC mains power (danger — never work on live mains without training)

Ohm's Law: The Most Important Equation in Electronics

Ohm's Law states: V = I × R (Voltage equals Current times Resistance). Rearranging: I = V/R and R = V/I. This single equation solves the majority of basic circuit problems.

Example: LED current-limiting resistor calculation

You have a 5V supply and want to power a red LED (forward voltage ≈ 2V, max current ≈ 20mA = 0.02A). The resistor must drop the remaining voltage (5V - 2V = 3V) across it while limiting current to 20mA.

R = V / I
R = 3V / 0.02A
R = 150 Ω

Choose the next standard value: 150Ω or 220Ω (both safe)

Example: Power dissipation check

P = V × I = 3V × 0.02A = 0.06W (60mW)

A standard 1/4W resistor handles this easily.
Use a 1/2W or 1W resistor when P > 125mW.

Series vs Parallel Circuits

Components can be connected in two fundamental configurations — or combinations of both.

PropertySeries CircuitParallel Circuit
CurrentSame through all componentsSplits between branches
VoltageSplits across components (adds up to supply)Same across all branches
Resistance (total)Adds: Rtotal = R1 + R2 + R31/Rtotal = 1/R1 + 1/R2 + ...
One failureBreaks entire circuitOther branches continue
ExampleOld Christmas lightsHome electrical outlets

Series resistors example: Two 100Ω resistors in series = 200Ω total. Simple addition.

Parallel resistors example: Two 100Ω resistors in parallel = 50Ω total (for equal resistors: Rtotal = R/2).

Essential Electronic Components

Resistor — Limits current flow. Color bands encode value. Most common: 220Ω, 1kΩ, 10kΩ. Tolerance is typically ±5% (gold band) or ±1% (brown band for precision).

Capacitor — Stores charge temporarily. Types: ceramic (small, stable, for decoupling), electrolytic (large values, polarized — watch the polarity!), tantalum (stable, expensive). Uses: power supply filtering, timing circuits, coupling AC signals.

LED (Light Emitting Diode) — Only allows current in one direction. Emits light when forward biased. Always needs a current-limiting resistor. The longer leg is anode (+).

Transistor (BJT) — Three-terminal amplifier/switch. NPN transistor: small current at base controls large current from collector to emitter. Used to switch motors, relays, and LED arrays from a microcontroller GPIO pin.

MOSFET — Voltage-controlled transistor. More efficient than BJT for power switching. N-channel MOSFET: voltage at gate controls current from drain to source. Used in motor drivers, power supplies, and high-current switching.

Diode — One-way valve for current. Used for reverse polarity protection, rectification (AC to DC), and freewheeling (protecting circuits from inductive kickback).

Inductor — Opposes changes in current. Stores energy in a magnetic field. Used in power supply switching regulators (buck/boost converters), filters, and motor drives.

Reading Schematics

A schematic is a symbolic diagram of a circuit. Components are represented by standardized symbols. Wires are lines. Dots where lines cross mean a connection; lines crossing without a dot do not connect.

Key symbols to know:

When reading a schematic, follow the current path: from positive supply voltage, through components, to ground. Trace each branch separately in parallel circuits.

Using a Multimeter: Your Most Important Tool

A multimeter measures voltage, current, and resistance. Learn these three modes before building anything complex.

Your First Circuit: LED with a Resistor

The classic first project. What you need: a 9V battery + battery clip, one LED (any color), a 470Ω resistor, a breadboard, two jumper wires.

  1. Connect the positive battery wire to the positive rail of the breadboard (+)
  2. Connect the ground battery wire to the negative rail (-)
  3. Insert the 470Ω resistor: one leg in the positive rail, other leg in a row
  4. Insert the LED: the long leg (anode) in the same row as the resistor's free leg; short leg (cathode) in another row
  5. Connect that cathode row to the negative rail with a jumper
  6. Connect battery — LED lights up

If it doesn't light up: check LED polarity (flip it), check connections on the breadboard (ensure components share the same 5-hole row), check battery voltage with multimeter.

Go from Circuits to Embedded AI at Precision AI Academy

Our bootcamp covers electronics fundamentals, microcontrollers, IoT, and edge AI — giving you a full hardware-to-software stack. Five cities, October 2026.

$1,490 · October 2026 · Denver, LA, NYC, Chicago, Dallas
Reserve Your Seat

Frequently Asked Questions

What is the difference between voltage, current, and resistance?

Voltage is electrical pressure (volts). Current is flow rate of electrons (amps). Resistance is opposition to that flow (ohms). Ohm's Law connects them: V = I × R.

What is the difference between series and parallel circuits?

Series: single path, current is same everywhere, voltages add. Parallel: multiple paths, voltage is same everywhere, currents add. Real circuits combine both.

How do I choose the right resistor value for an LED?

R = (Vsupply - Vforward) / Iled. For a 5V supply with a red LED (Vf≈2V, I=20mA): R = (5-2)/0.02 = 150Ω. Use 150Ω or 220Ω.

BP
Bo Peng

Founder of Precision AI Academy. Software engineer and hardware hobbyist with experience building IoT and embedded systems. Teaches hardware fundamentals to software developers.