A potentiometer is a three-terminal variable resistor that uses a sliding wiper contact to form an adjustable voltage divider. When you ask why do potentiometers have 3 pins, the direct answer is that the third pin (the wiper) is the only way to tap into a specific, variable fraction of the total voltage applied across the outer two pins. Without that third pin, you would just have a fixed resistor or a simple current-limiting device, entirely losing the ability to output a proportional analog signal.
What it changes in a real circuit is the conversion of a fixed reference voltage into a continuously variable analog voltage, which is essential for feeding sensor data into microcontrollers, setting bias points in amplifiers, or trimming power supply outputs. Let us break down the internal anatomy, the math that governs it, and the common wiring mistakes that fry components on the bench.
The Anatomy of a 3-Pin Potentiometer
Inside a standard rotary potentiometer—like the ubiquitous Bourns 3852A 10kΩ cermet pot—you will find a resistive track (made of carbon composition, cermet, or conductive plastic) and a metallic wiper that physically slides across it. The three pins connect to specific points on this assembly. The outer two pins anchor the ends of the resistive track, while the center pin connects exclusively to the wiper.
Here is the exact pinout and functional breakdown for a standard single-turn rotary potentiometer:
| Pin / Terminal | Standard Designation | Internal Connection | Role in Voltage Divider | Typical Bench Voltage |
|---|---|---|---|---|
| Pin 1 | CCW (Counter-Clockwise) | Fixed start of resistive track | Tied to GND (0V reference) | 0.00V |
| Pin 2 | Wiper | Sliding mechanical contact | Outputs the divided voltage (V_out) | 0.00V to V_in |
| Pin 3 | CW (Clockwise) | Fixed end of resistive track | Tied to V_in (Source voltage) | 5.00V (or 3.3V) |
| End Resistance | N/A (Mechanical Spec) | Wiper to Pin 1/3 at physical limits | Prevents true 0V or V_in output | Causes ~5mV to 15mV offset |
The Math: How the Third Pin Divides Voltage
The fundamental principle at work here is the voltage divider rule. By applying a known voltage across Pin 1 and Pin 3, the total resistance of the track is fixed. However, the wiper (Pin 2) splits that total resistance into two smaller, variable resistors in series: $R_{top}$ (between V_in and the wiper) and $R_{bottom}$ (between the wiper and GND).
Let us run a worked numeric example using real bench values. Assume you are building a manual voltage reference for an ESP32 ADC input using a 10kΩ linear taper potentiometer powered by a clean 5.00V USB rail.
- Total Resistance ($R_{total}$): 10,000Ω
- Input Voltage ($V_{in}$): 5.00V
- Wiper Position: Rotated to exactly 68% of its mechanical travel.
At 68% travel, the resistance between the wiper and GND ($R_{bottom}$) is 6,800Ω. The resistance between V_in and the wiper ($R_{top}$) is 3,200Ω. The output voltage at Pin 2 is calculated as:
$V_{out} = V_{in} \times (R_{bottom} / R_{total})$
$V_{out} = 5.00V \times (6800 / 10000) = 3.40V$
Pin 2 now outputs a steady 3.40V. But here is where real-world component physics clashes with ideal textbook math. If you feed that 3.40V into GPIO 34 on a standard ESP32 DevKit v1, the 12-bit SAR ADC will likely max out and return a raw value of 4095. Why? Because the ESP32 ADC is notoriously non-linear near the positive rail; its usable, linear range effectively caps around 3.1V to 3.2V. To get an accurate reading across the full dial, you must either use an external ADC (like the ADS1115) or place a voltage divider *after* the potentiometer to scale the 5V sweep down to a 0V–3.0V sweep before it hits the microcontroller pin.
Potentiometer vs. Rheostat: The Common Confusion
What people commonly confuse a 3-pin potentiometer with is a 2-pin rheostat. While both use a resistive track and a wiper, their circuit functions are entirely different.
A potentiometer (3 pins) is used to vary voltage. It is wired in parallel with the source, and the load draws negligible current from the wiper (high-impedance input).
A rheostat (2 pins) is used to vary current or resistance. It is wired in series with the load, and the full load current flows through the wiper.
If you only need a variable resistor (for example, to adjust the base current of a 2N2222 transistor to dim an LED), you only need two pins. You connect one outer pin and the wiper, leaving the second outer pin floating. However, leaving that second pin floating introduces a massive reliability risk. If the wiper gets dirty, oxidizes, or physically bounces off the carbon track due to vibration, the circuit becomes an open loop (infinite resistance).
The Fix: Always tie the unused outer pin directly to the wiper pin. If the wiper contact fails, the circuit simply defaults to the maximum fixed resistance of the pot (e.g., 10kΩ) rather than breaking the circuit entirely. This is a mandatory practice in industrial control panels and automotive electronics.
Where You Meet This in Practice
Understanding the 3-pin voltage divider topology is mandatory for several common electrical and embedded applications. Here is where you will actually wire these up on the bench:
1. Microcontroller Analog Inputs (Joysticks and Dials)
Every analog joystick on a game controller or a volume knob on a DIY synthesizer uses a 3-pin pot. The outer pins tie to 3.3V and GND, and the wiper feeds an ADC. For audio applications, you must select an audio taper (logarithmic) potentiometer, like the Alps RK09 series. Human hearing perceives volume logarithmically, so a linear pot will sound like it jumps from 'silent' to 'loud' in the first 10% of the rotation. An audio taper alters the physical shape of the resistive track so the voltage output curves, matching human perception.
2. Adjustable Power Supplies (LM317 Regulators)
When building a bench power supply using an LM317 adjustable linear regulator, a 3-pin potentiometer is used to set the output voltage. The LM317 maintains a 1.25V reference between its VOUT and ADJ pins. By placing a potentiometer between the ADJ pin and GND, you vary the current flowing through the internal resistor network, forcing the regulator to raise or lower its output voltage to compensate. Here, the wiper must handle the regulator's adjustment pin current (typically 50µA to 100µA), which is easily within the limits of a standard 1/2W carbon track pot.
3. Op-Amp Offset Nulling
In precision DC amplification using op-amps like the OP07 or LM741, tiny internal silicon mismatches cause an 'input offset voltage' that gets amplified into a massive DC error at the output. The datasheet will specify an 'offset null' circuit requiring a 10kΩ or 100kΩ trimpot. The outer pins connect to the op-amp's null pins, and the wiper connects to the negative supply rail (V-). Turning the wiper injects a micro-current that perfectly balances the internal differential pair, zeroing the output.
Ultimately, the third pin is what transforms a simple block of resistive carbon into a precise analog sensor. Whether you are trimming an audio signal, setting a DC bias, or building a custom HID controller, respecting the voltage divider math and the physical limits of the wiper contact will dictate the success of your circuit.






