A potentiometer is a three-terminal variable resistor that acts as an adjustable voltage divider to control electrical potential in a circuit. Unlike a simple fixed resistor that permanently drops voltage, or a switch that only offers binary on/off states, a potentiometer allows you to dynamically tap into any fraction of the input voltage. In practical circuits, it changes the signal level or reference voltage reaching the next stage, which is why it is frequently (and incorrectly) confused with a rheostat—a two-terminal device used strictly to throttle current.

How a Potentiometer Changes a Real Circuit (The Math)

To understand what potentiometers are used for, you have to look at how they manipulate voltage. A standard panel-mount potentiometer has three pins: Pin 1 (Counter-Clockwise / GND), Pin 2 (The Wiper / Output), and Pin 3 (Clockwise / VCC). Inside the casing is a resistive track—usually carbon composition, cermet, or conductive plastic. The wiper slides along this track, splitting the total resistance into two separate, variable resistors that always add up to the potentiometer's rated value.

Worked Numeric Example: Let's wire a standard Bourns 3590P-1-103L (a 10kΩ linear precision pot) across a 5V DC supply. Pin 1 goes to GND (0V), and Pin 3 goes to 5V. The total resistance is fixed at 10,000Ω. If you turn the shaft to exactly 30% of its mechanical travel, the resistance between Pin 1 and the Wiper (Pin 2) becomes 3,000Ω, and between the Wiper and Pin 3 becomes 7,000Ω.

Using the standard voltage divider formula, we can calculate the exact output voltage at the wiper:

V_out = V_in × (R_bottom / R_total)
V_out = 5V × (3000Ω / 10000Ω) = 1.5V

The wiper now outputs exactly 1.5V to your microcontroller's Analog-to-Digital Converter (ADC) or an op-amp's reference pin. Because the ADC has a very high input impedance (typically >100MΩ), it draws virtually zero current, meaning the 1.5V signal remains stable without sagging.

Let's verify the power dissipation to ensure we aren't burning up the component. The total current flowing through the 10kΩ track is I = 5V / 10,000Ω = 0.5mA. The total power dissipated as heat is P = 5V × 0.0005A = 2.5mW. This is well within the typical 0.5W (500mW) power rating of a standard panel-mount potentiometer, ensuring reliable operation over thousands of rotation cycles.

Where You Meet This in Practice

The specific application of a potentiometer dictates its physical construction and its taper (how the resistance changes relative to the shaft rotation). Here is where you will encounter them on the bench or in the field:

  • User Input & Position Sensing (Linear Taper / B-Code): In joysticks, synthesizer pitch wheels, and industrial throttle pedals, you need a 1:1 physical-to-electrical relationship. If you turn the knob halfway, you want exactly half the voltage. The Bourns 3590 series (cermet, multi-turn) or the Alps Alpine RK09K (single-turn carbon) are industry standards here.
  • Audio Volume Control (Logarithmic Taper / A-Code): Human hearing perceives loudness logarithmically, not linearly. If you use a linear pot for an amplifier's volume knob, 80% of the perceived volume change happens in the first 20% of the knob rotation, making fine-tuning at low volumes impossible. Audio potentiometers use an anti-logarithmic resistive track to compensate for human perception, yielding a smooth, natural volume swell.
  • Calibration and Trimming (Trimpots): PCB-mounted multi-turn trimmers (like the Bourns 3296W) are used to set bias voltages in power supplies, calibrate sensor offsets, or adjust LCD contrast. You adjust them once with a flathead screwdriver during manufacturing or setup, and they stay locked in place.

Potentiometer vs. Rheostat: The Common Confusion

When beginners ask "what are potentiometers used for," they often actually mean "how do I use this knob to limit current to a motor or dim a light." This is a fundamental misunderstanding of the component. While a potentiometer can be wired as a rheostat (by tying the wiper to one of the outer pins), standard panel-mount pots are not designed for high-current load throttling.

⚠️ Warning: The Dimmer Switch Trap
Do not wire a 10kΩ potentiometer in series with a 12V LED strip to act as a dimmer. The resistance is far too high to allow the LEDs to turn on. If you substitute a 100Ω potentiometer to fix the brightness issue, the wiper will be forced to carry the full current of the LED strip (often 2A to 5A). The wiper contact will overheat, melt the carbon track, and permanently destroy the component—potentially causing a fire. Use a PWM (Pulse Width Modulation) dimmer circuit with a MOSFET for high-power loads.
Feature Potentiometer (Voltage Divider) Rheostat (Variable Resistor)
Terminals Used 3 (Both ends + Wiper) 2 (One end + Wiper)
Primary Function Adjusts voltage / signal level Adjusts current flow
Circuit Placement Parallel to the load (signal branch) Series with the load
Power Rating Low (typically 0.1W to 1W) High (5W to 50W+)
Typical Application Volume knobs, sensor inputs, LCD contrast Motor speed control, high-power dimming

For a deeper look into the physics of how the resistive track behaves under load, the All About Circuits textbook chapter on potentiometers provides excellent foundational theory, while Electronics Tutorials offers great visual breakdowns of the internal wiper mechanics.

Frequently Asked Questions

What are potentiometers used for in Arduino and ESP32 projects?

In microcontroller projects, potentiometers are primarily used to provide analog user input. You wire the outer pins to 3.3V (or 5V) and GND, and the wiper to an ADC pin. The microcontroller reads the voltage and maps it to a digital value (0-1023 on a 10-bit Arduino Uno, or 0-4095 on a 12-bit ESP32). Pro-tip for ESP32 builders: The ESP32's ADC is notoriously non-linear at the extreme ends of its range (near 0V and near 3.3V). When designing a voltage divider with a pot for an ESP32, use a 10kΩ or lower resistance pot, and restrict your usable software range to roughly 10%–90% of the physical rotation to avoid jittery, inaccurate readings.

Why do audio volume controls use logarithmic potentiometers instead of linear?

This comes down to the Weber-Fechner law in psychophysics, which states that human perception of stimulus intensity (like sound or light) is logarithmic, not linear. A 10-watt amplifier doesn't sound "twice as loud" as a 5-watt amplifier; it requires roughly ten times the power to sound twice as loud. If an audio engineer used a linear (B-taper) potentiometer, the volume would seem to jump aggressively the moment you turned the knob off zero. A logarithmic (A-taper) potentiometer introduces resistance slowly at the beginning of the rotation and rapidly at the end, perfectly matching the exponential power curve required by the human ear to perceive a smooth, linear increase in volume.

Can I use a potentiometer to dim a high-power 12V LED strip?

No, not directly. As explained in the rheostat comparison above, standard potentiometers are rated for fractional watts (usually 0.25W to 0.5W). A 5-meter roll of 12V SMD 5050 LEDs can easily draw 3 to 4 amps. If you place a low-resistance potentiometer in series to drop the voltage, the wiper contact will be forced to dissipate several watts of heat, instantly vaporizing the internal carbon track. Instead, use the potentiometer as a signal input to a microcontroller (like an Arduino), and have the microcontroller output a PWM signal to the gate of a logic-level N-channel MOSFET (like an IRLZ44N). The MOSFET handles the heavy 12V current, while the potentiometer only handles a few milliamps of 5V signal current.