Three-in-one calculator for potentiometer circuits: voltage divider output, variable resistor (rheostat) values, and bias resistor design for custom voltage ranges. Essential for electronics design and troubleshooting.
A potentiometer (or "pot") is a three-terminal resistor with a sliding or rotating contact that forms an adjustable voltage divider. It is one of the most commonly used components in electronics for volume control, tuning, sensor adjustment, and signal scaling.
The wiper divides the total resistance into Rtop (orange) and Rbottom (teal). Vout = Vin × Rbottom / (Rtop + Rbottom).
Vout = Vin × (R2 / (R1 + R2))
For a potentiometer used as a voltage divider:
| Mode | Connection | Primary Use | Key Formula |
|---|---|---|---|
| Voltage Divider | All three terminals used | Volume controls, reference voltage adjustment, sensor calibration | Vout = Vin × (Rbottom / Rtotal) |
| Variable Resistor (Rheostat) | Two terminals (wiper + one end) | LED dimming, current limiting, gain adjustment | R = k × Rtotal (k = 0-1) |
| Biased Potentiometer | Pot with fixed resistors in series | Custom voltage ranges, sensor biasing, limited adjustment windows | Vrange = Vhigh - Vlow |
| Resistance Value | Taper | Common Applications |
|---|---|---|
| 1 kΩ - 5 kΩ | Linear or Audio | Audio mixers, headphone volume |
| 10 kΩ | Linear | Voltage dividers, op-amp circuits, Arduino sensors |
| 50 kΩ - 100 kΩ | Audio (log) | Guitar tone controls, stereo volume |
| 1 MΩ | Linear | High-impedance circuits, tube amplifiers |
An Arduino reads analog voltages from 0-5V using its 10-bit ADC. A sensor outputs 0-10V, which would damage the Arduino input. A voltage divider using a 10kΩ potentiometer is configured with Rtop = 10kΩ and Rbottom = 10kΩ (pot at 50%) giving Vout = 5V. By adjusting the pot, the scaling factor can be fine-tuned. The calculator shows that at 100% wiper position, Vout = 0V; at 0%, Vout = 10V. This allows precise calibration for sensor matching.
A temperature controller needs a setpoint adjustment from 3.0V to 4.5V from a 12V supply. Using a 10kΩ potentiometer, the bias calculator determines Rtop = 17.5kΩ and Rbottom = 5.0kΩ. The resulting wiper voltage ranges exactly from 3.0V to 4.5V, allowing precise temperature setting without wasting the full 0-12V range. This technique improves resolution and user experience.