When you wire a potentiometer as a voltage divider, you are essentially creating an adjustable, manual voltage regulator. To verify it is working correctly, you must measure both its static resistance and its dynamic voltage output. The direct answer: A properly functioning linear potentiometer will show a total resistance across the outer pins matching its rated value (±20%), and a wiper voltage that scales smoothly from 0V to your input voltage ($V_{in}$) without sudden dropouts or dead spots. If your midpoint voltage reads significantly lower than $V_{in}/2$, you are likely suffering from the meter loading effect or a worn wiper track.

Meter Setup and Probe Placement for Potentiometer Testing

Before you start probing, you need to configure your digital multimeter (DMM) correctly. Testing a voltage divider requires two distinct phases: an unpowered resistance check and a powered voltage check.

Safety & CAT Rating Note: Potentiometers are almost exclusively used in low-voltage DC circuits (3.3V, 5V, 12V, or 24V). A standard CAT II 600V rated multimeter is more than sufficient and provides the necessary overvoltage protection. Never attempt to measure resistance on a live circuit; doing so will yield garbage data and can blow your meter's internal protection fuse.

Meter Setup Block

  • Dial Position: Set to Resistance (Ω) for the unpowered track test. Switch to DC Voltage (V⎓) for the live division test.
  • Lead Jacks: Black lead to COM, Red lead to the V/Ω jack.
  • Range: Auto-ranging is preferred. If using a manual meter, set the resistance range to 20kΩ (for a 10kΩ pot) and the voltage range to 20V DC.

Probe Placement Mapping

A standard potentiometer has three terminals. While pinouts can vary by manufacturer, the functional placement is universal:

  • Pin 1 (CCW / Ground): Connect your black probe here. This is your 0V reference.
  • Pin 3 (CW / $V_{in}$): Connect your red probe here first to verify your source voltage.
  • Pin 2 (Wiper / $V_{out}$): Connect your red probe here to measure the divided output voltage relative to Pin 1.

Expected Readings: Resistance and Voltage Division Tables

To know if your component is healthy, you need baseline numbers. The table below details the expected readings for a standard 10kΩ linear (B-taper) potentiometer connected to a precise 5.00V DC source. The voltage division follows the formula: $V_{out} = V_{in} \times (R_{wiper\_low} / R_{total})$.

Table 1: Expected Readings for a 10kΩ Linear Potentiometer at 5V DC
Shaft Position R_total (Pin 1-3) R_low (Pin 1-2) R_high (Pin 2-3) Expected V_out Status
0% (Fully CCW) 10.0 kΩ ~0 Ω 10.0 kΩ 0.00V Good
25% Travel 10.0 kΩ 2.5 kΩ 7.5 kΩ 1.25V Good
50% (Midpoint) 10.0 kΩ 5.0 kΩ 5.0 kΩ 2.50V Good
75% Travel 10.0 kΩ 7.5 kΩ 2.5 kΩ 3.75V Good
100% (Fully CW) 10.0 kΩ 10.0 kΩ ~0 Ω 5.00V Good
50% (Worn Track) 10.0 kΩ 5.0 kΩ 5.0 kΩ 1.80V (Drop) Bad (Wiper contact issue)

If your resistance readings between Pin 1-2 and Pin 2-3 always add up to the total resistance (Pin 1-3), the carbon or cermet track is intact. However, if your resistance looks perfect but your voltage under load drops (like the 'Worn Track' row above), you have high wiper contact resistance or a loading issue. For a deeper dive into the math behind these ratios, SparkFun's Voltage Divider Tutorial provides an excellent breakdown of the underlying Ohm's law calculations.

Common Measurement Mistakes and Misleading Readings

When troubleshooting a potentiometer as a voltage divider, the component is rarely the actual problem. Usually, the measurement setup or the downstream circuit is skewing your data. Here are the most common traps.

1. The DMM Loading Effect

If you are using a 1MΩ potentiometer and measuring it with a budget multimeter that has a 1MΩ input impedance, your meter becomes a parallel resistor in the circuit. When you measure the midpoint, the meter pulls the 500kΩ lower half down to 333kΩ, causing your $V_{out}$ to read significantly lower than expected. The fix: Use a high-impedance meter (like a Fluke 87V with 11MΩ input impedance) or stick to potentiometers rated 10kΩ or lower for signal applications.

2. Confusing Linear (B) and Logarithmic (A) Tapers

If you rotate the shaft to the 50% physical mark and expect 2.50V, but you read 0.85V, your pot might not be broken—it might just be an Audio (Logarithmic/A-taper) potentiometer. A-tapers are designed to match human hearing perception and will output highly non-linear voltages relative to physical shaft rotation. Always verify the taper code printed on the casing (e.g., 'B10K' is linear, 'A10K' is logarithmic).

3. Ignoring Power Dissipation Limits

A standard 1/4W carbon track potentiometer can safely dissipate 250mW. If you connect a 100Ω potentiometer across a 12V supply, the current is 120mA, and the total power dissipation is $P = V \times I = 1.44W$. This will rapidly overheat and destroy a 1/4W pot, leading to an open-circuit reading on your meter. For higher voltage/current division, you must use a wirewound potentiometer rated for 2W or more.

Step-by-Step Verification Under Load (ESP32 / Arduino)

Measuring a voltage divider with a DMM is only half the battle. You must verify how the divider behaves when connected to your actual load, such as the Analog-to-Digital Converter (ADC) on a microcontroller. The ESP32, for instance, has a notoriously non-linear ADC input impedance that drops significantly above 2.5V, which can make a perfectly good 100kΩ potentiometer look broken.

Follow this numbered sequence to verify your circuit under real-world operating conditions:

  1. Power the Circuit: Energize your microcontroller and verify $V_{in}$ at Pin 3 of the potentiometer. It should read exactly 3.3V or 5.0V, depending on your logic level.
  2. Measure Unloaded $V_{out}$: With the DMM, measure the wiper voltage at the 50% mark. It should read 1.65V (for 3.3V systems) or 2.50V (for 5V systems).
  3. Connect the ADC: Wire the wiper to your microcontroller's ADC pin (e.g., GPIO34 on an ESP32).
  4. Read the Digital Value: Use your serial monitor to read the raw ADC value. For a 12-bit ADC, the midpoint should read roughly 2048.
  5. Check for 'Dead Spots': Slowly sweep the potentiometer shaft while watching the serial monitor. If the digital value suddenly jumps from 1500 to 2200, you have physical pitting on the carbon track causing wiper bounce.
  6. Apply the Hardware Fix (If Needed): If your ADC readings are noisy or non-linear at higher voltages, solder a 100nF ceramic capacitor between the wiper (Pin 2) and ground (Pin 1). This acts as a charge reservoir, stabilizing the voltage for the ADC's internal sampling capacitor. For high-impedance pots (>50kΩ), buffer the wiper with a rail-to-rail op-amp like the MCP6001.

By combining static resistance checks with dynamic load testing, you can definitively isolate whether a faulty voltage reading is caused by a worn potentiometer, a meter loading effect, or an impedance mismatch at your microcontroller's ADC pin. For more on component-level troubleshooting, refer to the potentiometer chapter in the All About Circuits DC textbook.