A potentiometer is a three-terminal variable resistor that acts as an adjustable voltage divider to control electrical potential in a circuit. While it physically changes resistance between its wiper and outer terminals, its primary function in a real installation is to change the voltage level or signal amplitude presented to a downstream load, such as an analog-to-digital converter (ADC) pin or an audio amplifier input. Beginners frequently confuse potentiometers with rheostats, but while a rheostat is wired as a two-terminal variable current limiter, a potentiometer strictly uses all three terminals to divide voltage proportionally.
The Core Mechanism: How a Potentiometer Divides Voltage
Inside a standard rotary potentiometer, a resistive track (made of carbon composition, cermet, conductive plastic, or wirewound metal) spans between Terminal 1 and Terminal 3. A spring-loaded wiper (Terminal 2) slides along this track as you rotate the shaft. By applying a reference voltage across the outer terminals, the wiper taps off a precise fraction of that voltage based on its physical position.
Let's look at a concrete numeric example. Imagine a 10kΩ linear potentiometer connected across a 5V DC supply, with Terminal 1 tied to 5V and Terminal 3 tied to Ground (0V). If you rotate the shaft so the wiper sits at exactly 30% of its mechanical travel from the ground terminal, the resistive track is split into a 3kΩ segment (wiper to ground) and a 7kΩ segment (5V to wiper). Using the standard voltage divider formula ($V_{out} = V_{in} \times \frac{R_{bottom}}{R_{total}}$), the voltage at the wiper is $5V \times \frac{3000}{10000} = 1.5V$. If you feed this 1.5V signal into an Arduino Uno's 10-bit ADC, the microcontroller will return a digital reading of approximately 307 out of 1023.
Where You Meet Potentiometers in Practice
You will encounter potentiometers across almost every sub-discipline of electronics, though their physical form factors change drastically based on the application:
- Audio Volume Controls: Amplifiers and mixers use 'audio taper' (logarithmic) potentiometers to match the non-linear way human ears perceive loudness. A DJ crossfader is simply a linear-slide potentiometer.
- Position Sensing: Analog joysticks use dual-gang potentiometers (two independent resistive tracks on one shaft) to map X and Y physical deflection into varying DC voltages.
- Bench Power Supplies: Precision multi-turn wirewound pots are used in the feedback loop of linear power supplies to dial in exact voltage or current limits.
- PCB Calibration (Trimpots): Small, screwdriver-adjustable cermet potentiometers are soldered directly to circuit boards to set reference voltages (VREF), adjust LCD contrast, or tune oscillator frequencies during manufacturing.
Potentiometer vs. Rheostat: Clearing Up the Confusion
The most common mistake on the workbench is wiring a potentiometer as a rheostat to control current, which often leads to component failure. A potentiometer is strictly a voltage divider meant for low-power signal handling (typically rated between 0.05W and 0.5W). A rheostat is a heavy-duty, two-terminal variable resistor designed to dissipate high heat (5W to 50W+) and control current flow to loads like DC motors or heating elements.
Taper, Tolerance, and Power: The Specs That Matter
Selecting the right potentiometer requires looking past just the resistance value. The taper (how resistance changes relative to shaft rotation) and the track material dictate whether the part will work in your specific circuit.
| Specification | Linear (B-Taper) | Audio/Logarithmic (A-Taper) | Anti-Logarithmic (C-Taper) |
|---|---|---|---|
| Resistance Curve | Constant rate of change | Slow initial change, rapid late change | Rapid initial change, slow late change |
| Primary Use Case | ADC inputs, sensor scaling, oscilloscope triggers | Audio volume controls, faders | Tone controls, specific transistor biasing |
| 50% Rotation Output | 50% of total resistance | ~10% to 15% of total resistance | ~85% to 90% of total resistance |
Track material also heavily influences performance. Carbon composition is cheap but suffers from high rotational noise and poor temperature stability. Cermet (ceramic-metal) offers excellent stability and is standard for multi-turn trimpots, as seen in the Bourns 3296 Series Datasheet. Conductive plastic provides the smoothest resolution and lowest noise, making it the premium choice for professional audio faders.
Decision Path: Picking the Exact Part for Your Build
Use this decision tree to select the correct component for your specific application, terminating in a concrete part number you can order today.
| If Your Application Is... | Then You Need... | Concrete Part Pick |
|---|---|---|
| Microcontroller ADC input (Arduino/ESP32) or general DC voltage scaling | 10kΩ Linear, Carbon or Cermet, 0.1W to 0.2W, single-turn | Bourns PTV09A-4015F-B103 (9mm, 15mm slotted shaft, PCB mount) |
| Audio volume control for an amplifier or guitar pedal | 10kΩ to 50kΩ Audio (Log) Taper, Conductive Plastic or Carbon, 0.1W | Alpha RD901F-40-15K-B10K (Standard audio panel pot) |
| PCB calibration, setting VREF, or tuning a buck converter feedback loop | 10kΩ Linear, Cermet, Multi-turn (25 turns), 0.5W | Bourns 3296W-1-103LF (Top-adjust, through-hole trimpot) |
| Precision lab equipment, dialing in exact millivolt thresholds | 10kΩ Linear, Wirewound, 10-turn, 2W, high resolution | Bourns 3590S-1-103L (Precision panel-mount dial) |
Frequently Asked Questions
Can I use a 100kΩ potentiometer instead of a 10kΩ pot to save power?
While a 100kΩ pot draws less continuous current from your power supply, it will likely cause erratic readings if connected directly to a microcontroller ADC. The SAR ADC inside chips like the ESP32 or ATmega328P uses an internal sampling capacitor (typically 10pF to 14pF) that must charge to the input voltage within a few microseconds. A 100kΩ source resistance forms a low-pass filter with this parasitic capacitance, preventing the capacitor from fully charging before the conversion completes. This results in 'drooping' or inaccurate readings. Stick to 10kΩ or lower for direct ADC connections, or buffer a 100kΩ pot with an op-amp voltage follower.
Why is my panel potentiometer getting hot and melting the solder?
Potentiometers are rated for specific power dissipation, usually 0.1W to 0.5W for standard panel mounts. Heat is generated based on the current flowing through the entire resistive track from Terminal 1 to Terminal 3, not just the wiper current. If you place a 100Ω potentiometer directly across a 12V battery, the power dissipated is $P = \frac{V^2}{R} = \frac{144}{100} = 1.44W$. This will instantly overcook a 0.5W carbon track, causing it to crack or catch fire. Always calculate the total track dissipation, or use a fixed resistor in series with the pot to limit maximum current.
What does 'gang' mean when buying potentiometers?
A 'gang' refers to the number of independent resistive tracks controlled by a single physical shaft. A single-gang pot controls one circuit. A dual-gang pot (like the Alpha RD902) has two completely isolated tracks on one shaft, which is mandatory for stereo audio applications where you need to adjust the left and right channels simultaneously with a single knob.






