12 V sensor to 3.3 V ADC input
Scaling an automotive or industrial signal down to something a microcontroller can read without damage.
Vout = 3.44 V, Zout = 2.35 kΩ — low enough for most ADCs
Calculate output voltage, ratio, current and output impedance — with the loading effect built in, not hidden on another page.
The supply feeding the top of the divider.
Between Vin and the output node. Accepts 4k7, 10k, 2M2.
Between the output node and ground.
Real circuits draw current. Switch this on to see what that does.
Quiescent draw: 600 µA flowing through the chain, wasting 7.20 mW.
Scaling an automotive or industrial signal down to something a microcontroller can read without damage.
Vout = 3.44 V, Zout = 2.35 kΩ — low enough for most ADCs
Two equal resistors create a mid-rail bias point for single-supply analogue circuits.
Vout = 2.5 V, but Zout = 50 kΩ — this one needs a buffer or a decoupling cap
Textbook divider, real load. See what happens to the "6 V" output when something actually draws current from it.
Vout collapses from 6 V to 1.04 V — an 83% error
Measuring a 12 V battery from a microcontroller, sized so the divider itself does not flatten the battery.
Vout = 2.11 V drawing only 21 µA
When to use this: scaling a signal down to something a microcontroller can read, creating a mid-rail bias point, setting a reference voltage, or working out why the 3.3 V you designed for is measuring 2.1 V on the bench.
Two resistors in series across a supply carry the same current. Because they share that current but have different resistances, the supply voltage splits between them in proportion to their values. Tap the junction between them and you get a fraction of the input:
Vout = Vin × R2 / (R1 + R2)
Only the ratio sets the output. A 10 kΩ/10 kΩ divider and a 1 MΩ/1 MΩ divider both halve the input. What the absolute values change is everything else — how much current the divider wastes, how stiff the output is, and how much a load disturbs it.
The formula above assumes nothing draws current from the output. The moment you connect something, its input resistance appears in parallel with R2, the effective lower leg gets smaller, and the output drops:
R2′ = R2 ∥ RL = (R2 × RL) / (R2 + RL)Vout = Vin × R2′ / (R1 + R2′)
This is not a small correction. Take a textbook 10 kΩ/10 kΩ divider on 12 V — nominally 6 V out. Connect a 1 kΩ load and the lower leg becomes 909 Ω, so the output collapses to 1.04 V. That is an 83% error, and it is the single most common reason a divider "doesn't work".
Switch on the load option in the calculator above and watch what a realistic load does to your design. Most calculators hide this on a separate page, if they cover it at all.
| Load vs R2 | Output error | Verdict |
|---|---|---|
| RL = R2 | ~33% | Unusable |
| RL = 10 × R2 | ~5% | Acceptable for rough scaling |
| RL = 100 × R2 | ~0.5% | Fine for most measurement work |
| RL = 1000 × R2 | ~0.05% | Effectively unloaded |
If you cannot make the load large relative to R2 — and often you cannot, because the load is whatever it is — the answer is a buffer, not a different resistor ratio. An op-amp wired as a voltage follower presents a near-infinite input impedance to the divider and drives the real load from its output.
Looking back into the output node, with the supply treated as a short to ground, you see R1 in parallel with R2:
Zout = R1 ∥ R2
This is the Thévenin resistance of the divider, and it is what determines how easily the output is disturbed. A 10 kΩ/10 kΩ divider has a 5 kΩ output impedance. A 1 MΩ/1 MΩ divider with the same ratio has 500 kΩ — same voltage, hugely different behaviour.
High output impedance causes three practical problems: loading error, susceptibility to noise pickup, and slow settling when driving any capacitance. That last one bites when feeding an ADC — the sample-and-hold capacitor has to charge through your divider, and most ADC datasheets specify a maximum source impedance of a few kilohms for exactly this reason.
You need to measure a 12 V rail with a microcontroller whose ADC tops out at 3.3 V. Pick a ratio that keeps the maximum input just under full scale:
Required ratio = 3.3 / 12 = 0.275Choose R2 = 3.3 kΩ, R1 = 8.2 kΩ (both E24 values)Vout = 12 × 3300 / 11500 = 3.44 V
Slightly over 3.3 V, so scale down a little or accept clipping at the very top of the range. The divider draws 12 / 11500 = 1.04 mA and has an output impedance of 2.36 kΩ — low enough for most ADCs to sample directly.
Same job, but the divider is permanently across a battery. Now the standing current matters more than the output impedance:
R1 = 470 kΩ, R2 = 100 kΩVout = 12 × 100/570 = 2.11 VI = 12 / 570 kΩ = 21 µA
21 µA drains about 0.18 Ah per year — negligible against any real battery. The trade-off is an 82 kΩ output impedance, which is too high for most ADCs to sample directly. The usual fix is a small capacitor across R2 to act as a charge reservoir for the sample-and-hold, or a MOSFET to switch the divider on only when you need a reading.
The ratio is dictated by the job. The absolute values are a three-way trade-off:
| Total resistance | Standing current | Output impedance | Suits |
|---|---|---|---|
| Under 1 kΩ | High — milliamps | Very low | Stiff references, noisy environments |
| 1 kΩ – 100 kΩ | Moderate | Moderate | General signal scaling, ADC inputs |
| Over 1 MΩ | Microamps | Very high | Battery monitoring, always-on circuits |
A reasonable default for signal work is a total in the 10 kΩ to 100 kΩ range. Go lower when the output must be stiff or the environment is electrically noisy; go higher when standing current matters and you can tolerate buffering.
Both resistors have tolerance, and in the worst case they drift in opposite directions. Two ±5% resistors give a divider ratio that can be off by roughly ±10%. Two ±1% parts give about ±2%.
If the ratio matters more than the absolute values — which it usually does — a matched pair or a resistor network in a single package will track far better than two loose parts, because they share a substrate and a temperature.
The supply at the top of the divider. For a sensor signal, use the maximum voltage it will produce.
R1 sits between the input and the output node; R2 between the output node and ground. The ratio R2/(R1+R2) sets the output.
Enter the input impedance of whatever the divider feeds. This is the step most calculators skip, and it is where dividers go wrong.
The divider current tells you what it costs you in standing power; the output impedance tells you whether the next stage can be driven directly or needs a buffer.
Vout = Vin × R2 / (R1 + R2), where R1 is the resistor between the input and the output node, and R2 is between the output node and ground. The formula assumes nothing draws current from the output — once a load is attached, R2 is replaced by R2 in parallel with the load resistance.
Almost always the loading effect. Whatever you connected to the output draws current, which puts its input resistance in parallel with R2 and pulls the output down. Switch on the load option above and enter the input impedance of the next stage to see the real figure.
The ratio sets the output voltage; the absolute values set the trade-off. Low values give a stiff, low-impedance output but waste current continuously. High values save power but produce a high output impedance that is easily disturbed. A common starting point is a total of 10 kΩ to 100 kΩ, then adjust once you know the load.
No. A divider is a signal-level technique, not a power supply. Any meaningful current draw collapses the output, and the resistors waste power continuously whether the load is drawing or not. Use a regulator — linear for simplicity, switching for efficiency.
R1 in parallel with R2, seen from the output node with the supply treated as a short. A 10 kΩ/10 kΩ divider has a 5 kΩ output impedance. That figure decides whether the next stage can be driven directly: as a rule, the load should be at least ten times the output impedance.
It depends on the ratio of load to R2. A load equal to R2 halves the effective lower leg and produces a very large error. A load ten times R2 keeps the error under about 10%; a hundred times keeps it near 1%. If you cannot make the load large relative to R2, buffer the output with an op-amp follower instead.
A purely resistive divider divides AC the same way it divides DC, using RMS values, as long as the frequency is low enough that stray capacitance is negligible. At higher frequencies the capacitance across the resistors starts to matter, which is why oscilloscope probes use compensated dividers with a trimmer capacitor.
The resistors carry current continuously, and that current is set by Vin and the total resistance. If the total is small relative to the supply voltage, the standing power is significant — 12 V across 200 Ω total dissipates 720 mW. Raise both resistor values to reduce it, keeping the ratio the same.
Last reviewed .
Solve for voltage, current, resistance or power. Get all four values at once, plus the resistor wattage you actually need.
4-6Decode 4, 5 and 6-band resistors, or enter a value to see its bands. Tolerance range and temperature coefficient included.
WPower from any two of voltage, current and resistance — then energy in kWh and what it costs to run.
LEDSize the current-limiting resistor for any LED. Rounds up to the nearest E24 value, because rounding down overdrives the LED.