Voltage is the electrical potential difference that pushes current through a circuit, measured in volts (V). When a builder asks how do you find the voltage, they are trying to determine either the electromotive force (EMF) supplied by a source or the potential drop across a specific component. In a real installation, voltage dictates exactly how much current will flow for a given resistance and determines the power dissipated as heat or useful work. People commonly confuse voltage with current, mistakenly thinking of voltage as the physical "flow" of electrons rather than the "pressure" pushing that flow.
The Two Ways to Find Voltage: Math vs. Measurement
Finding voltage on the workbench comes down to two distinct methods: calculating it theoretically using circuit laws, or measuring it physically with a digital multimeter (DMM). Both are essential, and relying on only one will eventually lead to a failed project.
Theoretically, we rely on Ohm’s Law (V = I × R) and Kirchhoff’s Voltage Law (KVL). Ohm's Law tells us that the voltage drop across a resistor is directly proportional to the current flowing through it and its resistance. KVL states that the sum of all voltage drops around any closed loop in a circuit must equal the total voltage supplied by the source. To borrow a single physical analogy: if electricity is water flowing through a pipe, voltage is the water pressure (PSI), while current is the flow rate (gallons per minute). You can calculate the pressure drop across a restriction if you know the flow rate and the size of the restriction.
Physically, we measure voltage using a multimeter. Unlike current, which requires you to break the circuit and route the electrons through the meter, voltage is measured in parallel. You simply touch the probes to two points in the circuit to read the potential difference between them. This non-intrusive measurement is why voltage is usually the first thing we check when debugging a dead board.
Worked Numeric Example: Calculating Voltage Drop
Let’s look at a common scenario: powering a standard 5mm red LED from a 12V DC power supply. LEDs are current-driven devices that have a fixed forward voltage drop (Vf). If you connect a red LED directly to 12V, it will draw excessive current and instantly burn out. We need a current-limiting resistor, but first, we must find the voltage that the resistor needs to drop.
- Identify the knowns: Source voltage (Vs) = 12.0V. LED forward voltage (Vf) = 2.1V. Target LED current (I) = 20mA (0.020A).
- Apply Kirchhoff’s Voltage Law: The total source voltage must equal the sum of the voltage drops. Therefore, Vs = V_resistor + V_LED.
- Solve for the resistor voltage: V_resistor = 12.0V - 2.1V = 9.9V.
- Calculate the required resistance: Using Ohm's Law (R = V / I), R = 9.9V / 0.020A = 495Ω.
Since 495Ω is not a standard E12 resistor value, you would select the next highest standard value, which is 510Ω. This ensures the current stays slightly below the 20mA maximum, extending the LED's lifespan.
Where You Meet This in Practice
Understanding how to find and verify voltage is critical across several common DIY and prosumer applications:
- Long 12V LED Strip Runs: When wiring 24AWG copper to a 12V LED strip, the wire itself acts as a resistor. Over a 15-foot run, you might lose 1.5V to wire resistance. The strip receives only 10.5V, resulting in dim output and color shifting. Finding the voltage at the end of the strip tells you if you need to upgrade to 18AWG wire or inject power at both ends.
- ESP32 and Microcontroller Brownouts: The ESP32-WROOM-32 requires a stable 3.3V rail. If the voltage drops below 2.8V even for a microsecond during a WiFi transmission spike, the internal brownout detector (BOD) triggers a reset. Measuring the voltage at the chip's VDD pin with an oscilloscope or a DMM with min/max capture is the only way to diagnose this.
- Home Wiring (Line vs. Load): When wiring a smart switch or a GFCI outlet, you must identify the "line" (incoming power) and "load" (downstream protection) wires. Using a non-contact voltage tester or a multimeter to find the 120V AC potential relative to ground tells you which wire is the live feed before you connect the device.
Real-World Scenario Walkthrough: The Melted Breadboard Trace
Theory is clean; the workbench is messy. Here is a scenario that highlights what happens when you fail to measure voltage under real-world load conditions.
The Setup: A hobbyist is building a pan-tilt camera mount using an ESP32 DevKit v1 and two SG90 micro servos. To keep things simple, they power the ESP32 and both servos from a single 5V USB breadboard power supply module, using standard 24AWG jumper wires.
The Numbers: The ESP32 draws about 160mA during WiFi bursts. Each SG90 servo draws roughly 200mA while moving, but has a stall current of 750mA if the mechanical linkage binds. Standard solderless breadboard traces and cheap jumper wires are generally rated for a maximum of 500mA, and 24AWG wire has a resistance of about 0.085 ohms per meter.
The Outcome: The camera mount hits a physical limit, stalling one servo. The servo draws 750mA. The total current spike hits nearly 1A. The breadboard's internal metal clips and thin jumper wires cannot handle this. The resistance in the breadboard trace causes a massive voltage drop. The 5V rail at the ESP32's VIN pin sags to 3.9V, causing the onboard AMS1117 voltage regulator to drop the 3.3V rail down to 2.7V. The ESP32 instantly brownouts and reboots. Upon reboot, the servo unstalls, the voltage recovers, and the cycle repeats. Worse, the high current overheats the breadboard trace, melting the plastic housing.
What Went Wrong: The builder assumed the 5V power supply would deliver exactly 5V to all components. They failed to find the voltage at the component pins under stall load. The fix requires powering the servos directly from a dedicated 5V buck converter with thick 18AWG silicone wire, sharing only a common ground with the ESP32, and keeping the high-current servo loops entirely off the breadboard.
Step-by-Step: Measuring Voltage with a Multimeter
When math isn't enough, you need to measure. Here is the proper procedure for finding DC voltage on a live board, based on standard practices from Fluke's measurement guides.
- Set the Dial: Turn your multimeter dial to DC Voltage (usually denoted by a V with a solid and dashed line). If you are measuring mains AC, switch to AC Voltage (V with a wavy line).
- Insert the Probes: Plug the black probe into the COM (common) jack. Plug the red probe into the V/Ω (volts/ohms) jack. Never leave the red probe in the Amps jack when measuring voltage, or you will create a dead short.
- Connect in Parallel: Touch the black probe to your circuit's ground (0V reference). Touch the red probe to the test point (e.g., the anode of a diode or the VCC pin of an IC). Do not break the circuit.
- Read and Record: Read the display. If you see a negative sign (e.g., -12.0V), your probes are reversed relative to the circuit's polarity; simply swap them or note the absolute value.
Frequently Asked Questions
Q: Can I measure voltage by putting the multimeter in series with the component?
A: No. A multimeter in voltage mode has an internal impedance of roughly 10 megaohms. If you place it in series, it will act like an open switch, halting current flow and preventing the circuit from working. Always measure voltage in parallel.
Q: Why does my multimeter read 0V across a closed switch, even though current is flowing?
A: Because a closed, healthy switch has near-zero resistance. According to Ohm's Law (V = I × R), if R is effectively 0, the voltage drop (V) is also 0. The potential difference exists across the load the switch is powering, not across the closed switch itself. If you read 120V across a closed switch, the switch contacts are likely burnt and failing open.
Q: How do I find the voltage of a battery that reads 12V but fails under load?
A: You must measure the voltage while the battery is connected to a load. A failing lead-acid or LiFePO4 battery might show a "surface charge" of 12.8V at rest, but its internal resistance has degraded. When you connect a 10A load, the internal resistance causes the terminal voltage to instantly collapse to 9V. Always verify battery health under load, referencing the manufacturer's datasheet specifications for acceptable voltage thresholds.






