A potentiometer is a three-terminal variable resistor that manually adjusts electrical potential (voltage) or limits current flow by sliding a wiper across a resistive track. In a real circuit, it changes the voltage ratio delivered to a load when wired as a voltage divider, or it restricts total current when wired as a variable resistor. While modern digital interfaces have replaced them in many consumer devices, potentiometers remain fundamental for analog calibration, audio signal attenuation, and manual control inputs in embedded systems.
The Core Mechanism: Voltage Division and Variable Resistance
To understand what a potentiometer does, you have to look at its physical construction. A standard panel-mount pot (like the ALPS RK09 series, typically around $1.50) or a PCB-mounted trimpot (like the Bourns 3296W cermet multi-turn, around $2.50) features three distinct pins:
- Pin 1 (CCW): One end of the fixed resistive track.
- Pin 2 (Wiper): The movable contact that rides along the track.
- Pin 3 (CW): The opposite end of the fixed resistive track.
When you apply a voltage across Pin 1 and Pin 3, the resistive track acts as a series of tiny resistors. The wiper (Pin 2) taps into this chain at a specific physical location. Think of the resistive track as a long, narrow pipe with water pressure (voltage) at one end and a drain (ground) at the other. The wiper is a movable tap along that pipe; moving it closer to the pressure source gives you higher pressure (voltage) at the tap.
For a deep dive into the internal physics of carbon composition versus cermet tracks, the Electronics Tutorials guide on potentiometers provides excellent cross-sectional diagrams and material comparisons.
Worked Example: Dialing in a 3.3V Logic Signal with a 10kΩ Pot
Let's look at a common bench scenario: You are prototyping a mixed-voltage system. You have a 5V sensor output, but you need to feed it into the analog-to-digital converter (ADC) of an ESP32-WROOM-32, which has a strict 3.3V maximum on its GPIO pins. You decide to use a 10kΩ linear potentiometer to scale the voltage down.
We wire the pot as a voltage divider: 5V to Pin 1, GND to Pin 3, and the ESP32 GPIO to Pin 2 (the wiper). The formula for the output voltage ($V_{out}$) is:
V_out = V_in × (R_2 / (R_1 + R_2))
Where R_1 + R_2 is the total track resistance (10,000Ω), and R_2 is the resistance between the wiper and ground. We want $V_{out}$ to be exactly 3.3V.
3.3V = 5V × (R_2 / 10,000Ω)
0.66 = R_2 / 10,000Ω
R_2 = 6,600Ω (6.6kΩ)
This means you must physically rotate the shaft until the wiper is positioned such that the resistance from the wiper to ground is 6.6kΩ, leaving 3.4kΩ between the 5V rail and the wiper.
The ESP32 ADC Gotcha: While the math above is theoretically perfect, the ESP32's internal ADC is notoriously non-linear above 2.5V and often saturates (reads a flat 4095) around 3.1V to 3.2V depending on the silicon revision. If you need precise 3.3V measurement, a simple potentiometer voltage divider won't suffice; you must use an external ADC like the ADS1115 or an op-amp buffer circuit. For simple threshold triggering, however, the pot works perfectly.
Where You Meet Potentiometers in Practice (and When to Upgrade)
You will encounter potentiometers across almost every sub-discipline of electronics, though their specific roles dictate the type you should select:
- Audio Attenuation: Mixing consoles and guitar amplifiers use logarithmic (audio) taper pots to control volume. The physical scraping of the wiper over time introduces carbon dust, leading to the infamous 'scratchy pot' noise. This is usually fixed by flushing the track with a contact cleaner like DeoxIT D5.
- PCB Calibration (Trimpots): Multi-turn cermet trimpots (like the Bourns 3296 series) are soldered directly to PCBs to zero out op-amp offset voltages or calibrate current limits on power supplies. They require a small flathead or Phillips screwdriver and are designed for occasional adjustment, not daily use.
- Joystick Positioning: Thumbsticks on game controllers and RC transmitters use dual-gang potentiometers (like the ALPS RKJXU series) to measure X and Y axis deflection by reading the voltage drop across two orthogonal tracks.
When to Upgrade: Because potentiometers rely on physical friction, they have a finite mechanical lifespan (typically 10,000 to 100,000 rotations for carbon tracks). If you are designing a high-cycle industrial control or a modern consumer interface, replace the analog pot with a rotary encoder (which outputs digital pulses and has infinite rotation) or a Hall-effect magnetic sensor (which measures shaft position without physical contact, eliminating wear entirely).
Frequently Asked Questions: What Do Potentiometers Do in Specific Scenarios?
What do potentiometers do compared to rheostats and rotary encoders?
This is the most common point of confusion on the bench. A potentiometer uses three terminals to act as a voltage divider, scaling a reference voltage up or down. A rheostat is simply a potentiometer wired with only two terminals (the wiper tied to one end of the track) to act as a variable current limiter. A rotary encoder, on the other hand, is not a resistor at all; it is a digital switch that outputs quadrature pulses as it turns, requiring a microcontroller to count the steps and determine position. Use a pot for analog voltage scaling, a rheostat for current limiting (like old incandescent dimmers), and an encoder for digital menu navigation.
What does a potentiometer do to an alternating current (AC) signal?
When wired as a voltage divider in an AC audio or RF circuit, a potentiometer attenuates the amplitude (peak-to-peak voltage) of the AC signal without altering its frequency. However, because the wiper and track have parasitic capacitance, turning a standard carbon pot at very high frequencies (above a few megahertz) can introduce unwanted phase shifts and signal degradation. For high-frequency AC attenuation, specialized low-capacitance pots or active digital potentiometers are required.
What do potentiometers do when wired directly across 120V AC mains?
Safety Warning: You should almost never wire a standard carbon or cermet potentiometer directly across 120V/240V AC mains to dim a light or control a motor. Standard pots are rated for low-voltage DC or low-current AC (usually 50V max). If you attempt to use a 10kΩ pot to dim a 100W incandescent bulb, the current draw will exceed the pot's power dissipation rating (usually 0.125W to 0.5W), causing the resistive track to overheat, melt, and potentially catch fire. For mains voltage control, use properly rated TRIAC-based dimmer circuits or solid-state relays controlled by a low-voltage potentiometer signal.






