When you need to buffer a high-impedance sensor, amplify a microphone signal, or filter out high-frequency noise, the operational amplifier (op amp) is your go-to integrated circuit. But staring at a parametric search on DigiKey yields over 14,000 results, and picking the wrong one can lead to railed outputs, phase reversal, or a fried microcontroller. This op amp cheat sheet cuts through the semiconductor jargon. Below, you will find the standard pinouts, a no-nonsense decision tree that terminates in exact part numbers, a complete reference circuit for 3.3V logic systems, and the bench-tested multimeter procedures to verify if your IC is alive or dead.

Op Amp Pinout and Symbol Anatomy

The vast majority of hobbyist and commercial op amps come in a standard 8-pin Dual In-Line Package (DIP-8) or Surface Mount (SOIC-8) footprint containing two independent amplifier channels (a "dual" op amp). While the internal silicon differs wildly between a $0.15 LM358 and a $4.00 OPA2188, the pinout remains standardized.

The Standard 8-Pin Dual Op Amp Pinout

  • Pin 1 (OUT A): Output of the first amplifier channel.
  • Pin 2 (IN- A): Inverting input. In negative feedback circuits, this is where your feedback network connects.
  • Pin 3 (IN+ A): Non-inverting input. This is typically where your input signal enters.
  • Pin 4 (V- or VEE): Negative supply rail. In single-supply circuits, this ties to Ground (GND). In dual-supply audio circuits, this ties to -12V or -15V.
  • Pin 5 (IN+ B): Non-inverting input of the second channel.
  • Pin 6 (IN- B): Inverting input of the second channel.
  • Pin 7 (OUT B): Output of the second channel.
  • Pin 8 (V+ or VCC): Positive supply rail (e.g., +5V, +12V, or +15V).
Bench Tip: Never leave unused op amp channels floating with their inputs tied to high-impedance nodes. A floating op amp will amplify thermal noise, oscillate at high frequencies, and draw excess current. Always wire unused channels as unity-gain voltage followers (tie the output directly to the inverting input) and tie the non-inverting input to ground or mid-supply.

Operating Regions and Spec Sheet Cheat Table

Op amps operate in two primary regions: the linear region (where negative feedback forces the two inputs to the same voltage, known as a "virtual short") and the saturated region (where the output hits the VCC or VEE rail because the open-loop gain has maxed out). To keep your circuit in the linear region, you must respect the common-mode input voltage range and the output swing limits.

Specification General Purpose (LM358) Audio / JFET (TL072) Rail-to-Rail CMOS (MCP6002) Precision Zero-Drift (OPA2188)
Supply Voltage Range 3V to 32V (Single) or ±16V ±5V to ±18V (Dual only) 1.8V to 6.0V (Single) ±2.25V to ±18V or 4.5V to 36V
Quiescent Current (Iq) ~0.7 mA per channel ~1.4 mA per channel ~100 µA per channel ~880 µA per channel
Slew Rate 0.3 V/µs (Very slow) 13 V/µs (Fast) 0.6 V/µs 2.0 V/µs
Gain Bandwidth Product (GBWP) 1.0 MHz 3.0 MHz 1.0 MHz 2.0 MHz
Input Offset Voltage (Vos) ±2 mV to ±7 mV ±3 mV to ±15 mV ±4.5 mV max ±25 µV (Microvolts!)
Output Swing Swings to GND, but loses ~1.5V from VCC Loses ~1.5V from both rails True Rail-to-Rail (within 10mV) Rail-to-Rail Output

Source data aggregated from the Texas Instruments LM358 Datasheet and Microchip MCP6002 Datasheet.

The Decision Tree: Which Op Amp Do You Actually Need?

Stop guessing based on what is in the tutorial you are reading. Use this decision matrix to pick the exact part number for your bill of materials.

Application Scenario Supply Voltage Key Requirement The "Buy This" Default Part
Buffering sensors for 3.3V/5V microcontrollers (ESP32, Arduino) 3.3V or 5V Single Rail-to-Rail I/O, Low Power, Cheap MCP6002-E/SN (SOIC-8) or MCP6002-I/P (DIP-8)
Audio pre-amps, guitar pedals, active filters ±12V or ±15V Dual Low Noise, High Slew Rate, No Crossover Distortion TL072CP (DIP-8) or NE5532P
Motor control feedback, basic LED drivers, high-voltage single supply 12V to 24V Single High voltage tolerance, dirt cheap in bulk LM358P (DIP-8)
Thermocouple amplification, strain gauges, precision current sensing ±5V Dual or 5V Single Zero-Drift, Microvolt Offset, High CMRR OPA2188IDR (SOIC-8)

Reference Application: 3.3V Single-Supply Non-Inverting Amplifier

Let us build a complete, copy-pasteable circuit for a common pain point: reading a low-voltage analog sensor with an ESP32. The ESP32's internal ADC is notoriously non-linear at the extreme bottom (0V to 0.15V) and top (3.1V to 3.3V) of its range. We will use an op amp to amplify a 0–250mV sensor signal to a clean 0–3.0V range, avoiding the ADC's dead zones.

Circuit Specifications and Component Values

  • Op Amp: MCP6002 (Powered at 3.3V single supply).
  • Target Gain: 12. (250mV input × 12 = 3.0V output).
  • Gain Formula: Gain = 1 + (Rf / Rin).
  • Feedback Resistor (Rf): 110 kΩ (1% tolerance metal film).
  • Input Resistor (Rin): 10 kΩ (1% tolerance metal film).
  • Bypass Capacitor: 100 nF (0.1 µF) ceramic, placed as physically close to Pin 8 (VCC) and Pin 4 (GND) as possible.

Wiring the Breadboard

  1. Connect MCP6002 Pin 8 to the ESP32 3V3 rail.
  2. Connect MCP6002 Pin 4 to the ESP32 GND rail.
  3. Place the 100 nF capacitor directly across Pin 8 and Pin 4.
  4. Wire your sensor's analog output to Pin 3 (Non-inverting input).
  5. Wire Pin 2 (Inverting input) to GND through the 10 kΩ Rin resistor.
  6. Wire the 110 kΩ Rf feedback resistor between Pin 2 (Inverting input) and Pin 1 (Output).
  7. Connect Pin 1 (Output) to your ESP32 GPIO pin configured as an ADC input (e.g., GPIO34).
Phase Reversal Hazard: The MCP6002 is a CMOS op amp. If the voltage on Pin 3 exceeds the VCC rail by more than 0.3V (e.g., if your sensor is powered by 5V but the op amp is powered by 3.3V), the internal parasitic diodes will forward-bias, causing "phase reversal." The output will violently slam to the VCC rail and can backfeed 3.3V into your ESP32 GPIO, potentially bricking the pin. Always add a 10k series resistor and a 3.3V Schottky clamp diode on the input if mixing voltage domains.

How to Bias, Test, and Troubleshoot with a Multimeter

Op amps rarely fail gracefully. They usually fail in one of three ways: the output stage shorts to a rail (locking the output high or low), the input stage degrades (causing massive offset voltages), or the silicon literally cracks from overvoltage transients. Here is how to test a suspected dead op amp using a standard digital multimeter (DMM).

Step 1: The Power-Off Diode Test (Checking for Shorts)

Remove all power from the circuit. Set your DMM to Diode Test Mode. Place the red probe on Pin 4 (GND/VEE) and the black probe on Pin 8 (VCC). You are measuring the internal ESD protection diodes. A healthy op amp will read between 0.5V and 0.8V. If your meter reads 0.00V or OL (Open Loop), the internal power rails are shorted or blown open. Throw the IC in the trash.

Step 2: The Power-On Supply Verification

Apply power. Switch your DMM to DC Voltage Mode. Measure between Pin 8 and Pin 4. It must read exactly your supply voltage (e.g., 3.28V for a 3.3V rail). If it reads 0V, you have a broken trace or a cold solder joint, not a bad chip.

Step 3: The "Virtual Short" Loop Check

In a properly functioning negative feedback circuit (like our non-inverting amplifier above), the op amp will drive its output to whatever voltage is necessary to make Pin 2 and Pin 3 equal. With the circuit powered and a signal applied, measure the DC voltage directly between Pin 2 and Pin 3.
The Threshold: This voltage should be less than 5 mV. If you measure a difference greater than 50 mV, the feedback loop is broken. Either the output is railed (saturated), a resistor is soldered to the wrong pad, or the op amp's internal output transistor has burned out.

Step 4: Output Stage Load Test

If the virtual short looks good but the circuit still misbehaves, the output stage might be weak (unable to source current). With the DMM still in DC Voltage mode, measure the output pin (Pin 1) relative to ground. Now, temporarily connect a 1 kΩ load resistor from the output to ground. If the voltage drops by more than 10% under this light 1 mA load, the internal output transistors are degraded.

The Safe Default Bench Stock for 2026

Do not waste time ordering exotic op amps for 90% of your projects. Keep these four DIP-8 and SOIC-8 part numbers stocked in your bench drawers. They cover nearly every maker, DIY audio, and embedded sensor application you will encounter.

  • The Microcontroller Companion: Microchip MCP6002-I/P (DIP-8)
    Cost: ~$0.50 each. Why: True rail-to-rail input/output, operates perfectly on 3.3V and 5V, and the input bias current is in the picoamp range, meaning it will not load down high-impedance voltage dividers. It is the undisputed king of ESP32 and Arduino sensor buffering.
  • The Audio Workhorse: Texas Instruments TL072CP (DIP-8)
    Cost: ~$0.75 each. Why: JFET inputs provide incredibly low voltage noise (18 nV/√Hz). It requires a dual supply (±12V is ideal), but it will not introduce the harsh crossover distortion that plagues the LM358 in audio paths. If you are building a guitar overdrive pedal or a synthesizer filter, this is your default.
  • The Bulletproof Beater: Texas Instruments LM358P (DIP-8)
    Cost: ~$0.15 each (or less in reels). Why: It can tolerate up to 32V on a single supply, and its inputs can handle common-mode voltages slightly below ground without phase reversal. It is terrible for audio and slow for high-speed data, but for driving a MOSFET gate based on a 12V battery monitor, it is indestructible.
  • The Lab-Grade Precision: Texas Instruments OPA2188IDR (SOIC-8)
    Cost: ~$3.50 each. Why: This is a "chopper-stabilized" zero-drift amplifier. The input offset voltage is guaranteed under 25 µV. When you are measuring the microvolt-level drops across a shunt resistor for a Coulomb counter, or amplifying a K-type thermocouple, standard op amps will introduce more error from their own offset than the sensor provides. The OPA2188 solves this instantly.

For a deeper dive into the mathematics of op amp stability and compensation networks, the Analog Devices Op Amp Basics library remains the definitive industry reference. Keep this cheat sheet bookmarked, wire your bypass capacitors close to the pins, and your analog front-ends will work on the first power-up.