A pot schematic represents a three-terminal variable resistor where a sliding or rotating wiper adjusts the resistance ratio between the outer terminals and the center tap. In a real circuit or installation, it changes either the voltage level delivered to a high-impedance input (acting as a divider) or the current flow restricted to a load (acting as a variable resistor). Beginners most commonly confuse the full three-terminal potentiometer symbol with a two-terminal rheostat symbol, which only uses the wiper and one outer leg to vary current rather than divide voltage.

Decoding the Pot Schematic Symbol and Pinout

When you look at a potentiometer tutorial or a manufacturer datasheet, you will encounter two primary schematic symbols for a pot. The IEEE standard uses a rectangle to represent the resistive element, while the older IEC/MIL standard uses a zigzag line. In both cases, an arrow pointing at the element represents the wiper.

Physically, a standard single-turn rotary potentiometer has three pins. While the physical orientation depends on the manufacturer, the electrical schematic always defines them by their function relative to rotation:

Schematic Label Physical Pin (Typical) Function Connection Rule
Terminal 1 (CCW) Left Pin Counter-Clockwise End Usually tied to Ground (0V) in voltage dividers.
Terminal 2 (Wiper) Center Pin Movable Tap The output node; connects to the load or ADC input.
Terminal 3 (CW) Right Pin Clockwise End Usually tied to VCC (e.g., 5V or 3.3V).
Bench Tip: Never leave the wiper (Terminal 2) floating in a digital control circuit if the outer terminals are energized. If the wiper loses mechanical contact due to dirt or wear, the input pin will float, picking up EMI noise and causing erratic microcontroller behavior. Always tie the wiper to one of the outer terminals if you only need a two-terminal variable resistor.

The Voltage Divider: A Worked Numeric Example

The most common application of a pot schematic is the voltage divider. Let us calculate the exact output using real component values. Assume we are using a Bourns 3296W-1-103LF, which is a 10kΩ linear, multi-turn cermet trimmer potentiometer (typically costing around $2.50). We wire Terminal 1 to Ground (0V), Terminal 3 to a regulated 5.00V DC supply, and Terminal 2 (the wiper) to an oscilloscope probe.

If we adjust the screw so the wiper sits at exactly 30% of the physical travel from the ground terminal, the internal resistance splits as follows:

  • R_bottom (Terminal 1 to Wiper) = 3,000Ω
  • R_top (Wiper to Terminal 3) = 7,000Ω

Using the standard voltage divider formula (V_out = V_in × [R_bottom / (R_top + R_bottom)]), we calculate:

V_out = 5.00V × (3,000 / 10,000) = 1.50V

This 1.50V is the open-circuit voltage. However, schematics often hide a critical real-world trap: loading effects. If you connect a 10kΩ load (like a low-impedance analog synthesizer module) directly to that wiper, the load is in parallel with R_bottom. The new equivalent R_bottom becomes (3,000 × 10,000) / (3,000 + 10,000) = 2,307Ω. Recalculating the divider with the loaded R_bottom and the new R_top (7,000Ω) yields an actual output of roughly 1.24V. The voltage sags because the pot cannot supply enough current without altering the resistance ratio. This is why pot schematics in modern electronics almost always feed into high-impedance buffers, like an op-amp (e.g., TL072) or a microcontroller ADC (which typically has an input impedance >100MΩ).

Where You Meet This in Practice

You will encounter pot schematics across almost every domain of electrical and electronic design, but the physical component chosen depends heavily on the environment and the required taper.

Audio and Human-Machine Interfaces (HMI): In guitar amplifiers, mixers, and synthesizers, you will see panel-mount pots like the Alpha RD901F-40-15R1-B10K (a 10kΩ linear taper, ~$1.20) or its 'A' taper (logarithmic/audio) equivalent. Human hearing perceives volume logarithmically, so an audio taper pot schematic will show a non-linear resistance curve, delivering 50% of the perceived volume at roughly 30% of the physical knob rotation.

Calibration and Feedback Loops: In switching power supplies and motor drivers, multi-turn trimpots (like the Bourns 3296 series) are used in the feedback network to set the precise output voltage or current limit. A 25-turn pot allows for extremely fine resolution when dialing in a 12.00V rail to exactly 12.05V.

High-Power Rheostats: In older industrial motor controls or laboratory test loads, you will find wirewound rheostats. These are physically massive, ceramic-housed pots rated for 50W to 500W, designed to dissipate heat directly into the air rather than relying on a heat sink.

Safety Caveat: Never use a standard 0.5W carbon-film panel pot to control high-current loads like a DC motor or a halogen lamp directly. The wiper contact will overheat, melt the carbon track, and fail open-circuit. Use the pot schematic to control a low-current gate signal on a MOSFET or a PWM controller instead.

Pot Schematic FAQs

How do I wire a pot schematic as a two-terminal variable resistor (rheostat)?

To convert a three-terminal potentiometer into a two-terminal rheostat on your breadboard or PCB, connect your circuit to the wiper (Terminal 2) and one of the outer terminals (Terminal 1 or 3). Crucially, you should also jumper the unused outer terminal directly to the wiper. If the wiper lifts off the resistive track due to mechanical vibration or oxidation, the jumper ensures the circuit sees the maximum resistance of the pot rather than floating to an infinite open-circuit state, which could cause voltage spikes or runaway feedback in op-amp circuits.

What does the arrow pointing to the zigzag line mean in older pot schematics?

The zigzag line is the legacy IEC/MIL-STD symbol for a resistor, and the arrow intersecting it represents the movable wiper of a potentiometer. If the arrow has a small line crossing it at a diagonal, or if it points to a specific tap point without an arrowhead, it often designates a fixed tap or a preset trimmer rather than a user-adjustable panel pot. In modern IEEE schematics, the zigzag is largely replaced by a plain rectangle, but you will still see the zigzag in vintage audio gear repair manuals and older military schematics.

Why does my microcontroller ADC read jittery values from a potentiometer?

ADC jitter from a pot schematic is almost always caused by the high output impedance of the voltage divider combined with the sample-and-hold capacitor inside the microcontroller's ADC. When the ADC samples, it briefly draws a spike of current to charge its internal capacitor, causing the voltage at the wiper to sag momentarily. To fix this, solder a 100nF (0.1µF) X7R ceramic capacitor directly between the wiper pin and ground as close to the MCU as possible. This capacitor acts as a local charge reservoir. Additionally, implement software oversampling—take 16 to 64 rapid readings and average them—to smooth out any remaining thermal noise from the carbon or cermet track.