A volt is the unit of electrical potential difference that pushes one ampere of current through one ohm of resistance. When you ask what are volts in electricity, you are really asking about the invisible pressure that forces electrons to move through a conductor, overcoming the natural friction (resistance) of the material. Without this potential difference, no work gets done, no LEDs light up, and no motors spin. On the bench or the jobsite, voltage is the primary parameter you check first because it dictates the safety boundaries, the insulation requirements, and the physical architecture of your entire circuit.
What Volts Actually Change in a Real Circuit
To understand what voltage changes in a physical installation, we use exactly one analogy: think of voltage as the water pressure in a municipal pipe system. High pressure (high voltage) can force a massive amount of water through a relatively narrow pipe, while low pressure (low voltage) requires a much wider pipe to deliver the same total volume of water per minute.
In electrical terms, that 'volume per minute' is power, measured in Watts. The fundamental equation is Power (W) = Voltage (V) × Current (A). If you need to deliver 2,400 Watts to a heater, you can do it at 120 Volts pushing 20 Amps, or at 240 Volts pushing 10 Amps.
Beyond wire sizing, voltage determines your insulation thickness and safety clearances. A 5V logic circuit on an ESP32 can use bare jumper wires sitting millimeters apart. A 480V 3-phase industrial motor requires thick, heavily insulated THHN conductors with strict physical spacing to prevent arc faults. According to the NIST SI Units reference, the volt is formally derived from the Josephson constant, but in practice, it is the defining metric for your material choices.
Worked Example: Calculating Voltage Drop on a 12V LED Run
The most common mistake hobbyists and junior technicians make is assuming the voltage at the power supply is the exact voltage that reaches the load. It isn't. Wire has resistance, and that resistance steals voltage. Let's look at a real-world numeric example.
The Scenario: You are powering a 12V DC LED strip that draws 5 Amps at full white. The power supply is mounted 15 feet away from the strip. You decide to use standard 18 AWG copper speaker wire for the connection.
- Calculate Total Wire Length: Electricity must travel to the load and return to the supply. 15 feet out + 15 feet back = 30 feet of total wire path.
- Find the Resistance: According to standard copper wire tables, 18 AWG copper has a resistance of roughly 6.385 ohms per 1,000 feet. For 30 feet, the resistance is (30 / 1000) × 6.385 = 0.191 ohms.
- Calculate Voltage Drop: Using Ohm's Law (V = I × R), the drop is 5 Amps × 0.191 ohms = 0.955 Volts.
- Find Load Voltage: 12.0V (supply) - 0.955V (drop) = 11.04 Volts reaching the LED strip.
Where You Meet Voltage in Practice (and Common Confusions)
You will encounter distinct voltage 'domains' depending on what you are building or wiring. Recognizing these domains prevents you from frying components or tripping breakers.
- Mains AC (120V / 240V / 277V / 480V): This is the grid power in your walls. It alternates direction 60 times a second (in North America). The voltage stated is the RMS (Root Mean Square) value, meaning the peak voltage actually hits about 170V on a 120V circuit. This domain requires strict adherence to NEC grounding and bonding rules.
- Automotive and Solar DC (12V / 24V / 48V): Found in cars, RVs, off-grid solar arrays, and heavy LED lighting. This is steady, unidirectional flow. The primary hazard here isn't usually shock (unless you are above 120V DC), but rather massive arc flashes and fires if a short circuit occurs without proper fuse protection.
- Logic and Embedded DC (5V / 3.3V / 1.8V): The realm of Arduino, ESP32, Raspberry Pi, and digital sensors. The hazard here is component death. Feeding 5V into a 3.3V GPIO pin on an ESP32-WROOM-32 will instantly destroy the silicon.
The Great Confusion: Volts vs. Amps vs. Watts
People routinely confuse the 'push' with the 'flow'. Volts are the pressure. Amps are the volume of electrons flowing. Watts are the total work being done. A common myth is that 'high voltage is always what kills you.' In reality, it is the current (Amps) crossing the heart that causes fibrillation. However, you need sufficient voltage to push that lethal current through the high resistance of dry human skin (which can be 100,000 ohms). Below 50V AC, the 'pressure' usually isn't high enough to break through dry skin, which is why 12V car batteries are safe to touch, but a 120V wall outlet is lethal.
Decision Tree: Picking the Right Power Supply Voltage
When designing a project or wiring a sub-system, you must choose a voltage architecture. Use this decision path to lock in your system voltage and select the appropriate power supply.
| If Your Load Is... | And The Wire Run Is... | Then Choose This Voltage... | Because... |
|---|---|---|---|
| Microcontrollers (ESP32, Arduino) and 5V sensors | Under 3 feet (jumpers/PCB traces) | 5V DC | Native logic levels; minimal drop over short distances. |
| Standard LED strips and small DC motors | Under 15 feet | 12V DC | Widely available, keeps current low enough for 18 AWG wire. |
| High-wattage LED arrays, winches, or long wire runs | Over 15 feet | 24V DC | Halves the current compared to 12V, drastically reducing voltage drop and wire heat. |
| Whole-home lighting or large appliance circuits | Over 50 feet (in-wall NM-B) | 120V / 240V AC | Required by code for branch circuits; minimizes copper cost for high power. |
FAQ: Quick Answers to Common Voltage Questions
Can I use a 12V power supply on a 9V guitar pedal?
No. While some pedals have internal voltage regulators that can tolerate 12V, many analog pedals will overheat, hum loudly, or fry their internal capacitors. Use a dedicated isolated 9V DC pedal power supply, or use a buck converter module (like an LM2596) to step the 12V down to a precise 9.0V.
Why does my multimeter read 12.8V on a '12V' car battery?
Nominal voltage is just a label. A fully charged, resting 12V lead-acid battery actually sits at about 12.6V to 12.8V. When the alternator is running, the system voltage is pushed to roughly 13.8V to 14.4V to force current back into the battery for charging. Always design your 12V automotive electronics to tolerate up to 15V to survive load-dump spikes.
What is the difference between AC and DC voltage?
DC (Direct Current) voltage is constant and flows in one direction, like water from a tank. AC (Alternating Current) voltage continuously reverses direction in a sine wave pattern. As noted in All About Circuits, AC is used for the grid because transformers can easily step AC voltage up for efficient long-distance transmission and step it down for safe home use, a trick that is much more complex and expensive to do with DC.






