To hook up a standard 3-terminal potentiometer as a voltage divider, connect one outer terminal to your positive voltage source (VCC), the opposite outer terminal to circuit ground (GND), and route the center wiper terminal to your load or microcontroller analog-to-digital converter (ADC) input. Assuming a 5V source and a 10kΩ linear potentiometer, rotating the shaft to the mechanical midpoint will yield exactly 2.5V at the wiper. While the resistive element itself is non-polarized, swapping the VCC and GND connections on the outer terminals will reverse the direction of the voltage sweep, which is critical to map correctly before writing any embedded firmware.
Decoding the Potentiometer Wiring Diagram and Physical Terminals
Before tracing the circuit path, you must map the schematic symbols to the physical solder lugs on your workbench. On a standard panel-mount potentiometer (like the ubiquitous Alpha RV16AF or Bourns PDB18 series), orient the component so the shaft is pointing directly at your chest and the three terminals are pointing downward. In this orientation, the left terminal is Pin 1 (Counter-Clockwise / CCW), the center terminal is Pin 2 (the Wiper), and the right terminal is Pin 3 (Clockwise / CW). For cermet trimpots like the Bourns 3296W, look directly at the adjustment screw with the pins facing down; the pinout remains left-to-right as Pin 1, Pin 2 (Wiper), and Pin 3.
When reading a wiring diagram, the symbol standard dictates how the component is drawn. In North American ANSI/IEEE schematics, a potentiometer is drawn as a zig-zag resistor line with an arrow pointing into the center, representing the wiper. In international IEC schematics, it is drawn as a rectangular box with the same center-pointing arrow. If the schematic shows the wiper arrow bending back to connect to one of the outer terminals, the diagram is instructing you to wire the component as a rheostat (a 2-terminal variable resistor) rather than a 3-terminal voltage divider.
Selecting the correct taper (the mathematical curve of the resistance change relative to shaft rotation) is just as important as the pinout. The table below details the standard tapers you will encounter in DIY and pro-audio wiring diagrams.
| Taper Type | Marking Code | Resistance at 50% Rotation | Primary Application |
|---|---|---|---|
| Linear | B (e.g., B10K) | 50% of total resistance | Microcontroller ADC inputs, LED dimming, sensor calibration |
| Logarithmic (Audio) | A (e.g., A10K) | ~10% to 15% of total resistance | Audio volume controls (matches human hearing perception) |
| Reverse Logarithmic | C (e.g., C10K) | ~85% to 90% of total resistance | Specialized audio panning, reverse-sweep effect pedals |
| W-Taper (Anti-Log) | W | Highly non-linear, center detent focus | Mixer faders, tone controls requiring a flat center response |
Node-by-Node Wiring Trace: Source to Load
With the physical terminals identified, let us trace a complete node-by-node path for a standard voltage divider circuit interfacing a 10kΩ linear potentiometer with an ESP32 microcontroller. This trace assumes a DC low-voltage environment (under 5V) and uses 22 AWG solid core hook-up wire.
The carbon or cermet resistive track inside the potentiometer does not have an inherent polarity; current can flow in either direction. However, the circuit relies on a strict ground return path. Pin 1 must tie to the system's common ground plane. If you accidentally wire Pin 1 to VCC and Pin 3 to GND, the physical rotation of the knob will inversely map to your software logic (e.g., turning the knob clockwise will decrease the ADC reading instead of increasing it). Always establish your ground node first.
Node A: The Source (VCC)
Trace begins at the ESP32 DevKit 3V3 pin (or 5V pin if using an Arduino Uno). A jumper wire routes from the microcontroller's positive voltage rail directly to Pin 3 (CW) of the potentiometer. This applies the reference voltage across the entire resistive element.
Node B: The Wiper Output (Signal)
From Pin 2 (Wiper), a separate jumper wire routes the divided voltage to the load. In this trace, it connects to GPIO34 on the ESP32, which is a dedicated input-only ADC pin. The wiper physically slides along the resistive track, tapping off a proportional fraction of the voltage applied between Pin 3 and Pin 1. Note: If your microcontroller ADC has a low input impedance, you may need to buffer this wiper output with an op-amp to prevent loading effects that cause non-linear readings.
Node C: The Ground Return (GND)
The trace terminates at Pin 1 (CCW). A jumper wire connects this terminal directly to the microcontroller's GND pin. This completes the circuit, allowing current to flow from VCC, through the entire 10kΩ track, and into ground. The voltage at the wiper (Node B) is now strictly bounded between 0V (GND) and 3.3V (VCC).
| Pin Number | Physical Location (Shaft Facing You) | Internal Connection | Circuit Role (Voltage Divider) | Circuit Role (Rheostat) |
|---|---|---|---|---|
| Pin 1 | Left Terminal | End of resistive track (CCW) | Ground (GND) Reference | Not Connected (Floating) |
| Pin 2 | Center Terminal | Movable wiper contact | Variable Output to ADC/Load | One end of variable resistor |
| Pin 3 | Right Terminal | End of resistive track (CW) | Positive Voltage (VCC) Source | Jumpered to Pin 2 (Wiper) |
Verifying Your Connections with a Digital Multimeter
Never solder a potentiometer into a permanent enclosure or power up a custom PCB without verifying the taper, pinout, and track health with a digital multimeter (DMM). Carbon composition pots are notoriously prone to factory defects and wiper oxidation. Follow this three-step bench verification protocol.
Step 1: Verify Total Resistance and Tolerance
Set your DMM to the Ohms (Ω) range. Place the probes on Pin 1 and Pin 3. The meter should read the nominal value of the potentiometer (e.g., 10,000Ω for a 10k pot). Standard carbon film pots carry a ±20% tolerance, so a reading anywhere between 8kΩ and 12kΩ is acceptable. If the meter reads 'OL' (open loop), the internal resistive track is cracked or the terminal rivets have failed; discard the component.
Step 2: Map the Wiper Sweep and Confirm Pin 2
Keep the black DMM probe on Pin 1. Move the red probe to Pin 2 (the suspected wiper). Turn the potentiometer shaft fully counter-clockwise. The meter should read near 0Ω (typically 1Ω to 5Ω due to wiper contact resistance). Slowly rotate the shaft clockwise while watching the display. The resistance value should climb smoothly and linearly (if using a B-taper) until it matches the total resistance measured in Step 1. If the value jumps erratically or drops to zero mid-sweep, the wiper is losing physical contact with the track.
Step 3: The 'Scratch' Test (AC Millivolt Noise Check)
This is a pro-audio and precision instrumentation trick that catches failing pots before they ruin a build. Power the potentiometer with your intended DC voltage (e.g., 5V). Set your DMM to AC Millivolts (mV~). Connect the black probe to circuit ground and the red probe to Pin 2 (the wiper). Slowly rotate the shaft through its entire range. Because you are applying pure DC, a perfect potentiometer will output 0mV AC. If your meter registers spikes in the AC millivolt range (e.g., 5mV to 50mV AC jumps) as you turn the knob, you are measuring 'wiper bounce' and track pitting. This electrical noise will manifest as a loud scratching sound in audio circuits or as erratic, jittery data in microcontroller ADC reads. Clean the track with DeoxIT D-Series contact cleaner or replace the unit entirely.
By strictly mapping the schematic symbols to the physical lugs, tracing the ground return path, and validating the carbon track with a DMM, you eliminate the most common points of failure in analog input circuits. Whether you are building a MIDI controller, a bench power supply, or an audio mixer, the physics of the voltage divider remain identical.






