Master the Basics: Understanding Potentiometers
Share
Potentiometers, often called pots for short, are versatile electrical components that act as adjustable voltage dividers. They come in various shapes and sizes, such as rotating knobs and linear sliders, and are commonly used for tasks like adjusting the volume on a stereo.
What Is a Potentiometer?

A potentiometer consists of three terminals and functions as an adjustable voltage divider. The schematic symbol for a potentiometer is a resistor with an arrow pointing into it from the side. These three terminals correspond to:
- The top of the voltage divider.
- The bottom of the voltage divider.
- The adjustable output.
As you rotate the knob or move the slider, the ratio of the voltage divider changes, altering the output voltage. For example, with a 20 kΩ potentiometer:
- When the slider is at one end, all resistance shifts to one side, and the other side has approximately zero resistance.
- When the slider moves to the opposite end, all resistance shifts to the other side.
Using Potentiometers in Circuits

Potentiometers are commonly used in breadboard prototyping. One popular type is the trimpot, a cube-shaped package with three terminals on the bottom:
- Two terminals represent the top and bottom of the voltage divider.
- The third terminal is the adjustable output.
Example: Adjustable Input with a Microcontroller
To use a potentiometer as an adjustable input for a microcontroller:
- Connect a known input voltage to the potentiometer.
- Measure the output voltage using the microcontroller's analog-to-digital converter (ADC).
For demonstration, an Arduino board can provide a 5V input to the potentiometer. The output voltage is read using an analog input channel:
- When turned fully to one extreme, the output voltage is approximately 0V.
- When turned fully to the other extreme, the output voltage reaches 5V (the input voltage).
The Arduino program can determine the potentiometer's position based on the output voltage, allowing it to adjust parameters like the volume of a music player.
Using Potentiometers as Rheostats

A potentiometer can also function as a two-terminal variable resistor, or rheostat. The schematic symbol for a rheostat is a resistor with a diagonal arrow crossing through it. To use a potentiometer as a rheostat:
- Connect only two of its terminals.
- Adjusting the potentiometer changes the resistance between the two terminals.
Variable resistors like rheostats are often used to fine-tune circuits.


For example:
- Adjusting the resistance in series with a light bulb can control the bulb's brightness by regulating the current.

Applications of Potentiometers
- Volume control in audio devices.
- Adjustable inputs for microcontroller programs.
- Brightness control for lights or displays.
- Tuning circuits in various electronic applications.
Why It Matters
Potentiometers are essential components in electronics, offering a simple way to adjust voltage or resistance. By mastering their use, you can add flexibility and precision to your projects, whether you're controlling volume, brightness, or other parameters. Start experimenting with potentiometers to enhance your electronics skills!