The Direct Answer: Node-by-Node Wiring Trace
To connect a standard 3-terminal potentiometer as a voltage divider for a microcontroller ADC (the most common use case), wire it in this exact node-by-node sequence:
- Source (VCC): Connect your positive supply (e.g., 5V or 3.3V from an Arduino/ESP32) to Pin 1 (Counter-Clockwise terminal).
- Resistive Path: Current flows through the internal carbon or cermet track from Pin 1 to Pin 3.
- Wiper (Output): Connect Pin 2 (the middle wiper terminal) to your load's input (e.g., MCU ADC pin like A0 or GPIO34). As the shaft turns, the wiper taps a varying voltage from the track.
- Ground Path: Connect Pin 3 (Clockwise terminal) directly to your system Ground (GND). This completes the circuit and establishes the 0V reference for the voltage divider.
Terminal Mapping and Schematic Symbols
Before soldering or plugging into a breadboard, you must correctly identify the physical pins and understand how they translate to schematic symbols.
Physical Pin Identification
Orient the potentiometer so the shaft is facing you and the three solder lugs are pointing downward. From left to right, the terminals are:
| Physical Position | Pin Number | Function | Internal Connection |
|---|---|---|---|
| Left Lug | Pin 1 | CCW (Counter-Clockwise) | Fixed end of resistive track |
| Middle Lug | Pin 2 | Wiper | Movable contact sliding on track |
| Right Lug | Pin 3 | CW (Clockwise) | Fixed end of resistive track |
Schematic Symbols in the Drawing
When reading a wiring diagram, you will encounter two standard symbol variations for the potentiometer:
- US Standard (IEEE): A zig-zag line (representing the resistor) with an arrow pointing into the middle. The arrow is the wiper (Pin 2). The ends of the zig-zag are Pins 1 and 3.
- IEC Standard (European): A rectangular box with a diagonal arrow pointing at it. The box represents the resistive element, and the arrow is the wiper.
In both symbols, the arrow represents the mechanical linkage to the shaft. If the arrow is drawn with a diagonal line crossing through it, it indicates a variable resistor (rheostat) configuration where the wiper is tied to one end.
Wiring Configurations: Voltage Divider vs. Rheostat
A 3-terminal potentiometer can be wired in two distinct ways depending on what your circuit needs to achieve. Use this decision table to select the correct topology.
| Circuit Goal | Configuration | Wiring Method | Terminals Used |
|---|---|---|---|
| Generate a variable analog voltage (0V to VCC) for an MCU ADC, op-amp, or reference pin. | Voltage Divider | VCC to Pin 1, GND to Pin 3, Output from Pin 2. | All three (1, 2, 3) |
| Vary current flow, dim an LED, or limit base current to a transistor without needing a fixed reference. | Rheostat (Variable Resistor) | Current enters Pin 1, exits Pin 2. Pin 3 is left floating OR jumpered to Pin 2. | Two (1 and 2) |
Step-by-Step Breadboard Wiring and Meter Verification
Do not rely on visual inspection alone. A $15 digital multimeter (DMM) will save you hours of debugging noisy ADC readings. Follow this exact verification sequence.
Phase 1: Cold Verification (Unpowered)
- Set DMM to Resistance (Ω): Select the lowest range that can read your pot's nominal value (e.g., the 20kΩ range for a 10kΩ pot).
- Verify Total Resistance: Place probes on Pin 1 and Pin 3. The meter should read close to the pot's rated value (e.g., 9.8kΩ to 10.2kΩ for a 10kΩ part). If it reads 'OL' (Open Loop), the internal track is cracked or broken.
- Verify the Sweep: Move one probe to Pin 2 (Wiper). Turn the shaft fully counter-clockwise. The resistance should drop near 0Ω. Turn it fully clockwise; it should rise to match the total resistance measured in Step 2.
- Check for Wiper Noise: While watching the DMM display, slowly rotate the shaft. The number should climb smoothly. If the display jumps erratically or drops out to 'OL' mid-sweep, the carbon track is dirty or worn out. Replace the component.
Phase 2: Live Verification (Powered)
- Power the Circuit: Apply VCC (e.g., 5V) to Pin 1 and GND to Pin 3.
- Set DMM to DC Voltage: Place the black probe on your system GND and the red probe on Pin 2 (Wiper).
- Measure the Sweep: Turn the shaft. You should see a smooth voltage transition from ~0.00V up to your supply voltage (e.g., 4.98V). If the voltage jumps or stalls, you have a bad ground connection or a failing wiper.
Component Selection Decision Path
Selecting the wrong potentiometer value or taper is the root cause of 90% of microcontroller analog read errors. The most common mistake is using a 1MΩ potentiometer with an ESP32 or Arduino. The ADC input has an internal sampling capacitor (typically 10pF to 14pF). If the source impedance (your pot's wiper resistance) is too high, the capacitor cannot charge fully during the brief sampling window, resulting in non-linear, low-biased, and noisy readings. According to All About Circuits, keeping source impedance low is critical for accurate voltage division.
Use this decision tree to select the exact part you need:
| Decision Criteria | If your application is... | Then choose... |
|---|---|---|
| Resistance Value | Reading an MCU ADC (Arduino, ESP32, STM32) | 10kΩ (Provides <2.5kΩ max source impedance, safely below the 10kΩ ADC limit). |
| Resistance Value | Audio volume control or high-impedance op-amp input | 50kΩ or 100kΩ (Prevents loading down the audio source stage). |
| Taper (Profile) | Position sensing, LED dimming, or MCU ADC input | Linear (B-Taper) (Voltage changes at a constant rate relative to shaft angle). |
| Taper (Profile) | Audio volume control (human hearing is logarithmic) | Audio / Logarithmic (A-Taper) (Perceived volume changes linearly with shaft turn). |
| Form Factor | Permanent PCB calibration or one-time trim | Cermet Trimmer (Top-adjust) (Stable across temperature, multi-turn precision). |
| Form Factor | User-facing panel control (knobs) | Panel Mount (Shaft) (Bushing mount, rated for 100,000+ rotation cycles). |
The Default Concrete Pick
If you are building a general-purpose sensor array, prototyping on a breadboard, or need a reliable voltage divider for an MCU ADC, stop searching and buy this exact part:
Bourns 3386P-1-103LF
Specs: 10kΩ, Linear Taper, Cermet Element, Single-Turn Top-Adjust Trimmer, Through-Hole.
Why this part: The 3386P series is the industry standard for bench prototyping. The cermet resistive element offers vastly superior wiper stability and temperature coefficient (±100 ppm/°C) compared to cheap carbon-composition pots. The 10kΩ value perfectly bridges the gap between low power consumption (drawing only 0.5mA at 5V) and providing a stiff enough source impedance to charge an ESP32's internal ADC capacitor without voltage divider droop. The 'LF' suffix ensures it is lead-free and RoHS compliant.
Wire Pin 1 to your 3.3V or 5V rail, Pin 3 to GND, and Pin 2 to your analog input. Verify the sweep with your DMM, and your analog readings will be rock-solid from the first upload.






