The LM386 audio amp IC is a low-voltage, low-power audio power amplifier integrated circuit designed to boost line-level or microphone-level audio signals to a level capable of driving small speakers. Unlike standard operational amplifiers that require dual power supplies and complex external feedback networks just to buffer a signal, the LM386 is internally compensated, operates from a single DC supply, and integrates the output stage needed to push real current into a low-impedance resistive load.
What the LM386 Audio Amp IC Actually Changes in a Circuit
When you drop an LM386 into a circuit, you are fundamentally performing an impedance and current transformation. Audio sources like electret microphones, piezo pickups, or microcontroller DACs output high-impedance, low-current voltage signals. If you connect an 8Ω speaker directly to a microcontroller GPIO pin, the pin will max out at 20mA and the audio will be inaudible. The LM386 takes that fragile voltage signal and converts it into a low-impedance, high-current signal capable of sourcing hundreds of milliamps.
Internally, the IC uses a class-AB output stage. Quiescent current draw is typically just 4mA, making it highly efficient for battery-powered projects, but it can deliver peak transient currents of over 150mA when driving a speaker cone through a heavy bass transient.
What People Commonly Confuse It With
- The LM358 Op-Amp: While pinouts look vaguely similar to the untrained eye, the LM358 is a general-purpose op-amp. It can amplify voltage, but its output stage cannot source the current required to drive an 8Ω speaker without severe clipping and thermal failure.
- Pre-Amplifiers: Pre-amps (like those built around the NE5532) boost voltage and provide tone control, but they still require a dedicated power amplifier stage to actually move a speaker cone. The LM386 is a power amplifier.
- The LM380: Another classic audio IC, but the LM380 has a fixed internal gain of 34, a completely different 14-pin or 8-pin power package, and requires a higher minimum supply voltage.
The Gain Pin Puzzle: Setting Amplification with Real Numbers
The most powerful feature of the LM386 is its adjustable gain, controlled via Pins 1 and 8. Inside the silicon, the feedback network consists of a 15kΩ resistor and a 150Ω resistor. However, there is also an internal 1.35kΩ resistor bridging Pins 1 and 8.
When Pins 1 and 8 are left open, the total bottom-leg resistance is 150Ω + 1350Ω = 1500Ω. The gain is calculated as: Gain = 2 × (15,000 / 1,500) = 20.
When you place a 10µF capacitor between Pins 1 and 8, you bypass the 1.35kΩ resistor. The bottom-leg resistance drops to just 150Ω. The gain jumps to: Gain = 2 × (15,000 / 150) = 200.
Worked Numeric Example: Dialing in a Custom Gain
Suppose you are amplifying an electric guitar pickup that outputs a peak signal of 50mV, and you want to drive it to a 2.5V peak to feed a larger downstream system. You need an exact voltage gain of 50 (since 2.5V / 0.05V = 50).
We use the bypassed formula, where $R_{ext}$ is the external resistor you place in series with the bypass capacitor between Pins 1 and 8:
Gain = 2 × [ 15,000 / (150 + Rext) ]
Plugging in our target gain of 50:
- 50 = 30,000 / (150 + Rext)
- 150 + Rext = 30,000 / 50
- 150 + Rext = 600
- Rext = 450Ω
The Fix: Place a 450Ω resistor (or a standard 470Ω for a gain of ~48) in series with a 10µF electrolytic capacitor between Pin 1 and Pin 8. The capacitor blocks DC while allowing the AC audio signal to bypass the internal 1.35kΩ resistor, and the 470Ω resistor sets the precise AC gain floor.
Where You Meet the LM386 in Practice
You will find the LM386 in DIY intercoms, AM/FM radio receiver outputs, ultrasonic sensors, and low-wattage guitar practice amps. When sourcing parts, you must select the correct suffix for your power supply and thermal constraints. According to the Texas Instruments LM386 datasheet, the variants are split by maximum allowable supply voltage and output power:
| Variant | Max Supply Voltage | Typical Output Power (8Ω) | Best Use Case |
|---|---|---|---|
| LM386N-1 | 12V | 325 mW (at 9V) | 9V battery pedals, portable radios |
| LM386N-3 | 12V | 700 mW (at 9V) | Desktop speakers, higher-volume toys |
| LM386N-4 | 22V | 1000 mW (at 16V) | 12V automotive or wall-wart projects |
In 2026, generic DIP-8 LM386N-1 ICs cost between $0.30 and $0.80 each in small quantities, making them a staple in the hobbyist bin. However, as noted in Circuit Basics' amplifier guides, the low cost often leads makers to skip critical support components, resulting in poor audio quality.
Bench Walkthrough: Building a 9V Guitar Practice Amp
Let us look at a real-world scenario where a theoretically sound schematic fails on the workbench due to physical realities.
The Setup: A hobbyist wires an LM386N-1 on a breadboard using a standard 9V alkaline battery. The input is a 10kΩ audio-taper potentiometer for volume. The output goes directly to an 8Ω, 0.5W paper-cone speaker. Pins 1 and 8 have a 10µF capacitor for maximum gain (200). Pin 7 has a 0.047µF bypass cap to ground.
The Numbers: With a 9V nominal supply, the internal voltage drops across the output transistors leave about 2V of headroom on the top and bottom. This yields a maximum peak-to-peak output swing of roughly 5V.
Vpeak = 2.5V
Vrms = 2.5V / √2 ≈ 1.77V
Theoretical Max Power = (1.77V)² / 8Ω ≈ 392 mW.
The Outcome: When the guitar is plugged in and the volume is turned past 50%, the audio plays but is accompanied by a harsh, high-pitched squeal. After three minutes of playing, the LM386 IC becomes too hot to touch, and the audio turns into a distorted, sputtering mess.
What Went Wrong:
- Missing Zobel Network: Speaker voice coils are inductive. At high frequencies, the impedance of the speaker rises, causing the amplifier's phase margin to collapse. The LM386 turns into an RF oscillator. The fix is adding a Zobel network (a 10Ω resistor and a 0.047µF capacitor in series) from the output pin (Pin 5) to ground. This provides a low-impedance path for high-frequency noise, stabilizing the amp.
- Power Supply Brownout: A standard 9V alkaline battery has a high internal resistance (often 1Ω to 2Ω). When the amp demands 150mA peak current for a bass note, the battery voltage sags below the IC's minimum operating threshold, causing brownout distortion. The fix is adding a 220µF to 470µF bulk electrolytic capacitor directly across the VCC and GND pins of the IC to supply transient current.
- Thermal Overload: A gain of 200 is overkill for a guitar pickup and amplifies the noise floor, forcing the output stage to constantly swing high currents even during silence, generating excess heat. Dropping the gain to 50 (using the 470Ω resistor trick from earlier) solves the thermal and noise issues.
Frequently Asked Questions
Can I bridge two LM386 ICs to get double the power?
Yes, but it requires careful wiring. You cannot simply wire the outputs in parallel. To bridge them, you must feed the audio signal into the non-inverting input (Pin 3) of the first IC, and feed the output of the first IC into the inverting input (Pin 2) of the second IC (with appropriate voltage dividing to prevent overdriving the second input). The speaker is then connected between the two output pins (Pin 5 of IC1 and Pin 5 of IC2). This effectively doubles the voltage swing across the speaker, quadrupling the theoretical power output, though you must ensure your power supply can handle the doubled current draw.
Why is my LM386 output humming loudly at 60Hz (or 50Hz)?
Mains hum is almost always a grounding or shielding issue. If you are powering the circuit from a bench power supply or a laptop connected to wall power, you likely have a ground loop. Ensure the audio source ground and the LM386 ground share a single, common star-ground point. Additionally, verify that your input wiring is shielded; the high-impedance input (Pin 3) acts like an antenna for stray electromagnetic fields if left as bare jumper wires on a breadboard.
Is the LM386 suitable for high-fidelity (Hi-Fi) audio?
No. The LM386 has a Total Harmonic Distortion (THD) of roughly 0.2% to 1% depending on the load and gain, and a limited frequency response that rolls off well before 20kHz at higher gains. It is excellent for voice, retro gaming, and guitar distortion, but for Hi-Fi stereo listening, you should look at class-D modules like the PAM8403 or the TPA3116D2.






