You can lower voltage in a circuit using resistors, voltage regulators, transformers, or dedicated converter chips, depending on whether you need a rough voltage drop or a precise, stable output. The right method depends on how much current your load draws, how efficient you need the circuit to be, and whether you’re working with AC or DC power.
Resistor Voltage Dividers
The simplest way to lower DC voltage is a resistor voltage divider: two resistors in series between your supply voltage and ground. You tap the output between the two resistors. The formula is straightforward:
Vout = Vin × (R2 / (R1 + R2))
R2 is the resistor closest to ground, and R1 connects to the supply. If you have a 12V source and use a 10kΩ resistor for R1 and a 10kΩ resistor for R2, you get 6V at the midpoint. Change R2 to 5kΩ and R1 to 10kΩ, and you get 4V.
The catch is that voltage dividers are only stable when the load connected to the output draws very little current. Once you connect something that pulls significant current, it acts like a third resistor in parallel with R2, dragging the output voltage down. With a load resistance 10 times R2, the output drops about 4 to 8% below what the formula predicts, depending on the ratio. For low-current applications like feeding a signal to a microcontroller input or setting a reference voltage, dividers work well. For powering motors, LEDs, or other components that draw meaningful current, you need a different approach.
Heat and Power Ratings
Any resistor that drops voltage also dissipates power as heat. You can calculate how much using P = V² / R, where V is the voltage across the resistor and R is its resistance. A 100Ω resistor with 9V across it dissipates 810 milliwatts. Every resistor has a maximum power rating (commonly 1/4 watt for small through-hole resistors), and exceeding it will burn the component. Always choose a resistor rated for at least twice the calculated dissipation to stay safe.
Linear Voltage Regulators
When you need a stable, specific output voltage that can supply real current, a linear voltage regulator is the easiest solution. The 78xx series is the classic example: an L7805 outputs a steady 5V, an L7812 outputs 12V, and the family covers fixed outputs of 5, 6, 8, 9, 12, 15, 18, and 24V. They accept input voltages up to 35V (40V for the 20V and 24V versions) and can supply around 1A of current.
The tradeoff is efficiency. A linear regulator works by burning off the difference between input and output voltage as heat. Its maximum theoretical efficiency equals Vout divided by Vin. Feeding 12V in and getting 5V out means only about 42% of your power reaches the load. The rest becomes heat. That makes linear regulators a poor choice when the voltage gap is large or when you’re running on batteries and care about runtime.
Every linear regulator also needs a minimum voltage gap between input and output to work, called the dropout voltage. For the 78xx series, this is about 2V. So to get a steady 5V output, you need at least 7V in. LDO (low dropout) regulators shrink this gap significantly, sometimes to a few hundred millivolts, which is useful when your supply voltage is only slightly above the output you need.
Wiring is simple: connect input voltage to the input pin, ground to ground, and your load to the output pin. Adding a small capacitor (typically 0.1µF) on each side stabilizes the output.
Switching (Buck) Converters
If efficiency matters, a buck converter is the better choice. Instead of burning excess voltage as heat, it rapidly switches the input on and off and uses an inductor and capacitor to smooth the output into a lower, steady voltage. Practical buck converters reach efficiencies up to 94%, meaning very little energy is wasted. Some modules operate with inputs up to 36V and outputs as low as 3.3V without needing a heatsink, even at elevated temperatures.
Buck converters are more complex internally, but you can buy pre-built modules for a few dollars that require no design work. You typically set the output voltage with a small adjustment screw or by selecting a specific module. They handle higher currents without the thermal problems of linear regulators, making them the standard choice for powering electronics from higher-voltage batteries or adapters.
The downsides are cost (slightly more than a linear regulator), electrical noise on the output from the switching action, and a minimum load requirement on some designs. For noise-sensitive analog circuits, a linear regulator or an additional filter stage after the buck converter may be necessary.
Zener Diodes for Simple Regulation
A Zener diode provides a fixed voltage drop when connected in reverse. You place a series resistor between your supply and the Zener, then tap the output across the Zener. The diode clamps the voltage at its rated value (Zener diodes come in specific voltages like 3.3V, 5.1V, 12V, and many others) by shunting excess current to ground.
The series resistor must be sized carefully. It needs to be small enough that the Zener still gets enough current to regulate when the load draws its maximum, and large enough that the Zener doesn’t exceed its power rating when the load draws its minimum. This balancing act limits Zener regulators to low-current applications, typically tens of milliamps. For anything demanding more power, a proper voltage regulator is a better fit.
Adjustable precision Zener references like the LM431 expand this concept. They let you set any output voltage from 2.5V up to 37V using two external resistors as a feedback divider, following the formula Vout = Vref × (1 + R1/R2).
Transformers for AC Circuits
For AC voltage, a step-down transformer is the standard method. A transformer has two coils of wire (primary and secondary) wound around a shared iron core. The ratio of turns in each coil determines the voltage change:
Vs / Vp = Ns / Np
If the primary coil has 1000 turns and the secondary has 100 turns, a 120V AC input becomes 12V AC output. The current ratio works in reverse: the secondary can deliver 10 times more current than the primary draws, minus losses. Transformers only work with AC. If you need lower DC voltage from an AC source, you pair a step-down transformer with a rectifier and filter capacitor.
Logic Level Shifting
In digital electronics, you often need to connect a 5V device to a 3.3V device. Simply dropping the voltage with a resistor divider can work for slow signals, but for faster communication (SPI, I2C, UART at higher speeds), a dedicated level shifter chip is more reliable. These are small ICs that cleanly translate signals between voltage levels. Some handle speeds up to 50 MHz at 3.3V and support translations between common levels: 5V to 3.3V, 3.3V to 1.8V, and other combinations down to 1.2V.
Choosing the Right Method
- Very low current, signal only: Resistor voltage divider. Cheap, no special parts, but output shifts under load.
- Moderate current, small voltage drop: Linear regulator or LDO. Simple wiring, clean output, but wastes power as heat.
- High current or large voltage gap: Buck converter. High efficiency, handles real loads, but introduces some switching noise.
- Fixed reference or clamp voltage: Zener diode. Good for protecting circuits or setting reference points at low current.
- AC mains voltage: Step-down transformer. The only practical option for reducing AC line voltage safely.
- Digital signal conversion: Level shifter IC. Purpose-built for translating logic signals between different voltage standards.
The most common mistake is using a method that can’t handle the current your circuit actually draws. Always calculate the power dissipation in any voltage-dropping component before building. If the wasted power (input voltage minus output voltage, multiplied by current) is more than a watt or two, a switching converter will save you from heat problems.

