Before we dive into component selection, we need to clear up a massive search-intent collision: if you are asking "what type of amp do I need" for a home electrical panel or an appliance, you are actually looking for amperage (breaker and wire sizing). But if you are building an audio circuit, a sensor interface, or an RF project, you need an amplifier. An electronic amplifier is a circuit or semiconductor component that takes a low-power input signal and outputs a proportionally larger, higher-power replica of that signal by drawing energy from an external DC power supply.
In a real circuit, an amplifier changes the power level of a signal, allowing a microcontroller's weak 3.3V GPIO pulse or a microphone's millivolt whisper to drive heavy loads like speakers, motors, or long transmission lines. People commonly confuse amplifiers with transformers; while a step-up transformer increases AC voltage, it cannot amplify DC signals, nor can it add net signal power to a system. It simply trades current for voltage. An active amplifier, however, uses a small signal to modulate a large power supply, genuinely increasing the signal's wattage.
Amplifier Classes Explained (A, AB, B, and D)
When selecting a power amplifier for audio, motor driving, or RF transmission, you will encounter "Classes." These do not refer to quality grades, but rather to the conduction angle—the portion of the 360-degree input waveform during which the output transistors are actively conducting current.
| Class | Conduction Angle | Max Theoretical Efficiency | Crossover Distortion | Best DIY Use Case |
|---|---|---|---|---|
| Class A | 360° (Always On) | 25% - 50% | None (Very Linear) | High-end headphone amps, pre-amps |
| Class B | 180° (Push-Pull) | 78.5% | High (Zero-crossing glitch) | Rarely used alone in modern audio |
| Class AB | 181° to 360° | 50% - 70% | Low (Bias eliminates glitch) | Bench audio amps, guitar amps, servo drives |
| Class D | PWM Switching | 90% - 95%+ | N/A (Filtered out) | Subwoofers, portable Bluetooth speakers, motor VFDs |
For most bench and DIY audio projects, Class AB (like the LM3886 or TDA7294) offers the best balance of audio fidelity and thermal manageability. If you are building a battery-powered ESP32 Bluetooth speaker or driving a subwoofer, Class D (like the TPA3116D2) is mandatory to prevent your battery from draining in minutes and your enclosure from melting.
Worked Numeric Example: Sizing a 50W Class-AB Power Supply
Let's say you are building a desktop audio amplifier using an LM3886 Class-AB chip to drive a standard 8-ohm bookshelf speaker at 50 Watts RMS. You need to know what type of power supply (transformer and rectifier) to buy. Here is the exact bench math:
- Calculate Required RMS Voltage:
Using the power formula $P = V_{rms}^2 / R$, we get $50 = V_{rms}^2 / 8$.
$V_{rms}^2 = 400 \Rightarrow V_{rms} = 20V$. - Calculate Peak Voltage:
Audio is an AC waveform. The peak voltage is $V_{rms} \times \sqrt{2}$.
$20V \times 1.414 = \mathbf{28.28V_{peak}}$. - Account for Transistor Dropout:
Class-AB output transistors are not perfect switches; they drop about 3V to 5V across their junctions. To hit 28.28V at the speaker, your DC rails must be at least $28.28V + 4V = \mathbf{32.28VDC}$. - Select the Transformer:
A standard 24VAC transformer yields roughly 34VDC after passing through a bridge rectifier and filter capacitors ($24V \times 1.414 - 1.4V$ diode drop). This is a perfect match. - Calculate Current and VA Rating:
Peak current is $I_{peak} = V_{peak} / R = 28.28V / 8\Omega = \mathbf{3.53A}$.
Because music has a high crest factor (peaks are much higher than average), we multiply the continuous wattage by 1.5 for the transformer VA rating: $50W \times 1.5 = 75VA$. Buy an 80VA or 100VA 24VAC toroidal transformer.
If you had blindly bought a 12VAC transformer, your amp would clip and distort at roughly 8 Watts, entirely defeating the purpose of the 50W chip.
Where You Meet This In Practice
Amplifiers are not just for making music louder. On the electronics workbench, you will select specific amplifier topologies for three distinct scenarios:
- Sensor Signal Conditioning (Op-Amps): When reading a shunt resistor or a load cell, the signal is often in the microvolt or millivolt range. You need an Instrumentation Amplifier (like the INA226 or AD620) or a precision Op-Amp (like the OPA2134) to amplify the voltage without adding thermal noise. These are voltage amplifiers, not power amplifiers.
- Microcontroller Interfacing (Buffer Amps): An ESP32 GPIO pin can only source about 40mA. If you need to drive a 12V relay coil that draws 150mA, you use a transistor or a buffer amplifier (like the ULN2803 Darlington array) to amplify the current while keeping the logic voltage isolated.
- RF and High-Frequency (LNA): In software-defined radio (SDR) or WiFi projects, you use a Low Noise Amplifier (LNA) at the antenna to boost weak RF signals above the noise floor of your receiver's ADC before the signal travels down a lossy coaxial cable.
For a deeper dive into the semiconductor physics of how these components operate at the junction level, the All About Circuits semiconductor textbook provides excellent schematic breakdowns of internal op-amp stages.
Frequently Asked Questions
What type of amp do I need for a subwoofer?
You need a Class-D monoblock amplifier. Subwoofers require massive amounts of current to move heavy speaker cones at low frequencies (20Hz - 80Hz). Class-AB amps would generate too much heat at these power levels. Look for a Class-D module based on the TPA3116D2 or STA516A chips, rated for 2-ohm or 4-ohm loads, paired with a high-current switching mode power supply (SMPS).
What type of amp do I need to read a millivolt sensor with an Arduino?
You need an instrumentation amplifier (In-Amp) or a zero-drift op-amp. Standard op-amps like the LM358 have high input offset voltages that will ruin low-level DC measurements. Use a dedicated part like the Texas Instruments INA226 (which includes an I2C ADC specifically for shunt current sensing) or an AD8421 for general-purpose load cell amplification.
Do I need a specific type of amp for high-impedance headphones?
Yes. High-impedance headphones (like 300-ohm Sennheisers) require high voltage swing, not necessarily high current. A standard Class-D Bluetooth amp chip will struggle to provide the voltage rails needed to drive them cleanly. You need a Class-A or Class-AB discrete op-amp circuit powered by higher voltage rails (e.g., ±12V or ±15V) to ensure the voltage peaks aren't clipped.
What type of amp do I need to drive a DC motor from a Raspberry Pi?
You need an H-Bridge motor driver, which is essentially a specialized, high-current Class-D/Class-B switching amplifier. The Pi's 3.3V GPIO cannot drive a motor. Use a module based on the L298N (for brushed motors up to 2A) or a DRV8825 (for stepper motors). These ICs take your low-power PWM logic signals and amplify the current using the external motor power supply.
For more application-specific schematics and thermal design guidelines for power amplifier ICs, refer to the Texas Instruments Audio Amplifiers documentation hub.






