Voltage is what pushes electrical charge through a circuit, defined formally as the difference in electric potential energy per unit charge between two points. When a beginner asks "voltage is what," they are usually trying to understand why a 12V battery can power a car starter but a 12V static shock from a doorknob cannot, or why their ESP32 browned out when fed 5V. To answer this, we have to look past abstract textbook definitions and examine how electrical potential actually behaves on the workbench.
The Core Definition and the Single Analogy
In one sentence: Voltage is the electrical pressure that forces electrons to move through a conductor, measured in volts (V). According to the NIST SI unit definitions, one volt is the potential difference required to impart one joule of energy per coulomb of charge.
To visualize this, we will use the single most effective analogy in electronics: water pressure in a closed pipe system. Imagine a water tank elevated on a tower. The height of the water creates pressure at the bottom valve. That pressure is your voltage. The water flowing through the pipe when you open the valve is your current (amps). The narrowness of the pipe is your resistance (ohms). If you raise the tank higher (increase voltage), the pressure increases, forcing more water (current) through the same pipe (resistance).
What people most commonly confuse voltage with is current. Voltage is the cause (the push); current is the effect (the flow). You can have high voltage with zero current (a 9V battery sitting on a desk), but you cannot have current without voltage.
What Voltage Changes in a Real Circuit: A Numeric Example
Voltage is what changes the current draw in a fixed-resistance load, which in turn changes the total power consumed. Let us look at a concrete numeric example using a standard 1500W US space heater plugged into a wall outlet.
The heater's heating element is a fixed resistor. We can calculate its resistance using the nominal mains voltage of 120V:
- Formula: $R = V^2 / P$
- Calculation: $120^2 / 1500 = 14,400 / 1500 = 9.6 \Omega$
Now, suppose you are at the end of a long, undersized extension cord, and the actual voltage at the outlet drops to 110V. What does this voltage drop change in the circuit?
- It changes the current: Using Ohm's Law ($I = V / R$), the new current is $110V / 9.6\Omega = 11.45A$ (down from the nominal 12.5A).
- It changes the power output: The new power is $110V \times 11.45A = 1259W$.
Because the voltage dropped by roughly 8%, the current dropped by 8%, but the total heating power dropped by over 16%. This demonstrates that voltage is what dictates the actual work a resistive load can perform. For a deeper mathematical breakdown of these relationships, the All About Circuits DC textbook chapter on voltage and current provides excellent foundational proofs.
Where You Meet This in Practice
On the jobsite or at the electronics bench, you rarely deal with perfect theoretical numbers. Here is where voltage variations actually matter:
- Mains AC Voltage: In North America, nominal voltage is 120V, but the acceptable utility range is typically 114V to 126V. If your multimeter reads 128V, your utility is running high, which will shorten the lifespan of incandescent bulbs and appliance motors.
- Nominal vs. Actual Battery Voltage: A "12V" lead-acid car battery actually rests at about 12.6V when fully charged and reads 13.8V to 14.4V when the alternator is charging it. A "12V" LiFePO4 battery rests at 13.2V and charges up to 14.6V. Designing a low-voltage disconnect (LVD) requires knowing these actual voltages, not the marketing label.
- Logic Level Voltages: An Arduino Uno operates at 5V logic. An ESP32-WROOM-32 operates at 3.3V logic. If you connect a 5V sensor output directly to an ESP32 GPIO pin, the excess voltage will permanently destroy the silicon junction.
Real-World Scenario Walkthrough: The 24V Motor Controller Failure
To understand why voltage ratings on components are absolute maximums, let us walk through a real bench failure involving a DIY motor controller.
The Setup: A hobbyist is wiring a 24V DC brushed motor to a custom motor controller using a generic 24V laptop-style power supply. The controller uses IRLB8721 logic-level MOSFETs to switch the motor's ground path.
The Numbers:
- Power supply output: 24V DC at 5A (120W max).
- Motor running current: 3A.
- Motor stall current: 8A.
- IRLB8721 MOSFET maximum Drain-to-Source Voltage ($V_{DS}$): 30V.
The Outcome: When the hobbyist commands the motor to start under a heavy mechanical load, the motor stalls. The power supply detects the 8A stall current (exceeding its 5A rating) and its overcurrent protection trips, shutting off the output. However, the moment the power supply cuts out, the motor controller's MOSFETs violently fail, shorting out and releasing magic smoke.
What Went Wrong: The hobbyist assumed that because the power supply was rated for 24V, the voltage in the circuit would never exceed 24V. They confused current-limiting with voltage-clamping. When the power supply's switching regulator tripped its protection circuit, poor internal regulation and the inductive kickback from the motor's collapsing magnetic field caused a momentary voltage spike on the DC bus. An oscilloscope capture of this exact failure mode shows the bus voltage ringing up to 38V for roughly 5 microseconds before decaying. Because the IRLB8721 MOSFETs were rated for a maximum $V_{DS}$ of 30V, the 38V spike caused avalanche breakdown, permanently destroying the silicon die.
Common Confusions Matrix
When troubleshooting, mixing up voltage, current, and resistance leads to misdiagnosed faults. Use this matrix to keep them straight:
| Property | What It Is | Unit & Symbol | Multimeter Measurement Rule |
|---|---|---|---|
| Voltage | The potential difference (push) | Volts (V) | Measured in parallel across two points. Circuit can be ON or OFF. |
| Current | The flow of electrons (movement) | Amperes (A) | Measured in series. Circuit must be ON and flowing. |
| Resistance | Opposition to flow (friction) | Ohms ($\Omega$) | Measured in parallel across a component. Circuit MUST be OFF and de-energized. |
FAQ: Quick Answers from the Workbench
Can I measure voltage without a complete circuit?
Yes. Voltage is a potential difference between two points. If you touch your multimeter probes to the positive and negative terminals of a disconnected 9V battery, it will read ~9V. No current is flowing, but the electrical pressure (voltage) is still present.
Why does my 12V LiFePO4 battery read 14.4V on the multimeter?
"12V" is the nominal marketing voltage based on the battery's discharge curve. 14.4V is the actual absorption charging voltage. If it reads 14.4V while disconnected from the charger, it has surface charge; let it rest for an hour, and it will settle back to its true resting voltage of roughly 13.2V to 13.4V.
Is higher voltage always more dangerous?
Not necessarily. It is the current through the heart that causes fibrillation, but voltage is what pushes that current through your skin's resistance. Dry human skin has a resistance of about 100,000 ohms. At 12V, the current is $12 / 100,000 = 0.12mA$ (imperceptible). At 120V, the current is $120 / 100,000 = 1.2mA$ (a painful shock). However, if your skin is wet, resistance drops to 1,000 ohms, and 120V pushes a lethal 120mA. Always treat any voltage over 50V AC or 120V DC as a lethal hazard, de-energize the circuit, and verify it is dead with a tested meter before touching conductors.






