A variable resistance is an electronic component that allows you to manually or automatically adjust its electrical opposition to current flow within a specific range. In a real circuit, it changes the voltage division ratio or limits the total current flow dynamically, eliminating the need to desolder and swap fixed components when tuning a design. Whether you are dialing in the bias voltage on an audio amplifier or calibrating a sensor offset, understanding the physical construction and power limits of these components is critical to preventing melted tracks and erratic readings.
The Core Types of Variable Resistors
The term 'variable resistor' is a broad umbrella. On the bench, you will encounter several distinct physical implementations, each optimized for a specific type of circuit interaction. The table below breaks down the primary types you will source for embedded systems, power electronics, and audio builds.
| Type | Terminals | Typical Power Rating | Primary Function | Example Part Number |
|---|---|---|---|---|
| Panel Potentiometer | 3 | 0.05W - 2W | User-facing voltage division (e.g., volume knobs) | Bourns 3852A-281-103AL (Audio Taper) |
| Wirewound Rheostat | 2 (or 3 wired as 2) | 5W - 50W+ | High-current limiting and load dumping | Ohmite 280-C-25W (25W, 10Ω) |
| Cermet Trimpot | 3 | 0.1W - 0.5W | One-time calibration and offset nulling | Bourns 3296W-1-103LF (10kΩ) |
| Digital Potentiometer | IC (SPI/I2C) | <50mW (internal) | Microcontroller-driven programmatic tuning | Microchip MCP41010 (10kΩ, SPI) |
| NTC Thermistor | 2 | Varies by series | Automatic temperature-dependent resistance | EPCOS B57891M0103K000 (10kΩ at 25°C) |
When sourcing these components, always check the taper. Linear tapers (B-taper) change resistance at a constant rate relative to shaft rotation, while audio/logarithmic tapers (A-taper) change slowly at first and rapidly at the end, matching the non-linear way human ears perceive loudness.
Potentiometer vs. Rheostat: Clearing Up the Confusion
The most common mistake hobbyists make is using the terms 'potentiometer' and 'rheostat' interchangeably, which leads to catastrophic component failure when scaling up to higher power loads.
- Potentiometer (3-Terminal): Wired as a voltage divider. The outer two pins connect across a voltage source (e.g., VCC and GND), and the middle wiper pin outputs a variable voltage. It handles very little current because the wiper connects to a high-impedance input (like an op-amp or microcontroller ADC).
- Rheostat (2-Terminal): Wired in series with a load to limit current. Only one outer pin and the wiper are used. The full load current passes directly through the resistive track.
For a deeper look at how these components behave in DC networks, the All About Circuits textbook chapter on potentiometers provides excellent schematic breakdowns of wiper mechanics.
Worked Numeric Example: Sizing a 5V Voltage Divider
Let us look at a standard scenario: reading a user dial on an Arduino Uno using a 10kΩ linear potentiometer (like the Bourns 3386P series). We need to calculate the output voltage and the ADC reading at a specific mechanical position, while verifying our current draw.
Supply Voltage (VCC): 5.0V
Potentiometer Total Resistance: 10,000Ω (10kΩ)
Wiper Position: 40% of total mechanical travel
Microcontroller: Arduino Uno (10-bit ADC, 0-5V reference)
Step 1: Calculate the divided resistances.
At 40% travel, the resistance between the wiper and GND (R2) is 40% of 10kΩ, which equals 4,000Ω. The resistance between VCC and the wiper (R1) is the remaining 6,000Ω.
Step 2: Calculate the wiper output voltage (V_out).
Using the standard voltage divider formula: V_out = VCC × (R2 / (R1 + R2))
V_out = 5.0V × (4000 / 10000) = 5.0V × 0.4 = 2.0V.
Step 3: Calculate the expected ADC integer value.
The Arduino Uno maps the 0-5V range to 10-bit integers (0 to 1023).
ADC Value = (2.0V / 5.0V) × 1023 = 409.
Step 4: Verify power dissipation and current draw.
The total current drawn from the 5V rail by the potentiometer itself is determined by Ohm's Law: I = V / R_total.
I = 5.0V / 10,000Ω = 0.0005A (or 0.5mA).
The total power dissipated by the potentiometer is P = V × I = 5.0V × 0.0005A = 2.5mW. Since 2.5mW is well below the standard 100mW (0.1W) rating of a cermet or carbon track pot, this component sizing is safe and efficient. If we had chosen a 10Ω potentiometer instead, the current draw would be 500mA, wasting 2.5W of power as heat and likely brownout-resetting the Arduino's onboard 5V regulator.
For more on calculating these ratios for sensor networks, review the SparkFun voltage divider tutorial.
Where You Meet This in Practice
Variable resistances show up across nearly every electrical discipline, but their implementation changes drastically based on the environment.
Audio and Signal Routing
In mixing consoles and guitar amplifiers, you will almost exclusively find audio-taper (logarithmic) potentiometers. Human hearing perceives volume logarithmically; a linear pot would sound like it does nothing for the first 70% of the rotation and then suddenly jumps to maximum volume in the last 30%. High-end audio gear often uses conductive plastic or hybrid tracks to minimize 'scratchy' wiper noise caused by carbon dust accumulation over time.
AC Mains Light Dimmers (The Great Misconception)
When you turn the dial on a standard 120V AC wall dimmer, you are not using a variable resistor. Using a rheostat to dim a 60W incandescent bulb would require a massive, heavily finned wirewound resistor dissipating dozens of watts of heat inside a plastic wall box—a severe fire hazard. Instead, modern dimmers use a TRIAC and DIAC phase-cutting circuit. The variable component in the dimmer is just a low-power 250kΩ potentiometer that adjusts the RC timing constant, which in turn dictates the firing angle of the TRIAC. Always verify if a 'dimmer' module is actually a PWM controller or a phase-cut AC module before wiring it to your microcontroller.
Automotive and Heavy Machinery Sensors
Throttle position sensors (TPS) and suspension ride-height sensors are essentially ruggedized, sealed potentiometers. Because they operate in high-vibration, high-moisture environments, they increasingly use magneto-resistive or Hall-effect sensors instead of physical carbon tracks. These provide a variable voltage output without any physical wiper contact, eliminating the mechanical wear-out failure mode inherent to traditional potentiometers.
Frequently Asked Questions
Can I use a digital potentiometer to control a high-power LED?
No. Digital potentiometers (like the MCP41010) have strict limits on the voltage across their internal resistor ladder (usually max 5V) and can only sink/source a few milliamps. To control high-power LEDs, use the digital pot to set the reference voltage on an op-amp or dedicated LED driver IC, which then switches the heavy current via a MOSFET.
Why do some potentiometers have three pins and others have two?
Three-pin components are designed to be used as potentiometers (voltage dividers). Two-pin components are either dedicated rheostats, or they are variable resistors like thermistors and photoresistors (LDRs) whose resistance changes based on environmental stimuli rather than a mechanical wiper.
What causes a potentiometer to become 'scratchy' or jump values?
Inside a mechanical pot, the wiper physically slides across a resistive element. Over time, oxidation, dust, and physical wear create microscopic dead spots on the track. In audio circuits, this causes popping sounds. You can sometimes temporarily clean carbon tracks with specialized contact cleaner (like DeoxIT F5), but cermet and wirewound tracks usually require replacement once physically worn.
Understanding the exact mechanical and thermal limits of the component you select ensures your circuit remains stable from the breadboard prototype to the final enclosed product. Always consult the manufacturer's datasheet—such as the Bourns potentiometer specifications—to verify the exact rotational torque, wiper contact resistance, and lifecycle ratings before committing to a specific part number in your bill of materials.






