The buzzer symbol represents an electromechanical or piezoelectric audio transducer on a schematic. The exact graphic depends on whether the component is an active (self-oscillating) or passive (externally driven) buzzer, and which drafting standard the engineer used. Below is the definitive reference chart for identifying these symbols, their pinouts, and their real-world electrical characteristics.

The Complete Buzzer Symbol and Pinout Reference Chart

Component Type Standard / Symbol Description Pinout & Polarity Typical DC Resistance / Impedance Common Part Example
Passive Piezoelectric IEC 60617-11: Semicircle facing a straight line (like a polarized capacitor) with radiating arrows. 2 pins. Non-polarized (AC drive required). No '+' marking. Infinite DC resistance (Open). ~1-2 kΩ impedance at resonant frequency (e.g., 4 kHz). TDK PS1240P02BT
Active Electromagnetic IEEE 315 / ANSI Y32.2: Circle with a diode or internal oscillator box notation, radiating arrows. 2 pins. Strictly polarized. '+' marks VCC, unmarked is GND. 16 Ω to 42 Ω (coil resistance). Contains internal driver ASIC. CUI Devices CPT-9015S
Active Piezoelectric IEC 60617 Variant: Capacitor-style symbol enclosed in a circle with a '+' sign and radiating arrows. 2 pins. Strictly polarized. Reverse voltage destroys internal oscillator. Infinite DC resistance. Draws 3-5 mA average, up to 30 mA peak internally. Murata PKM13EPYH4000-A0
Magnetic Transducer (Speaker) Legacy UK BS 3939 / Old IEC: Simple circle with a flat base and radiating lines (no internal oscillator notation). 2 pins. Non-polarized for audio, but phased for arrays. 4 Ω, 8 Ω, or 16 Ω nominal voice coil resistance. CUI Devices CES-271816
Programmable Dual-Tone Manufacturer Specific: Rectangle with 'BUZ' text, three connection nodes (VCC, GND, CTRL). 3 pins. VCC, GND, and a logic-level control pin (3.3V/5V). High impedance on CTRL pin. VCC draws 15-25 mA when active. Kingstate KSB12402A

Regional Standards: IEC, IEEE, and Legacy UK Variants

When reading schematics, the region and era of the design dictate which symbol library the CAD software pulled from. Understanding these variants prevents misidentifying a buzzer for a capacitor or a standard speaker.

Standard Application Guide:
  • International (IEC 60617-11): The global standard used in Europe, Asia, and modern international designs. It emphasizes the physical operating principle (e.g., the capacitor-like plates for piezoelectric elements).
  • United States (IEEE Std 315 / ANSI Y32.2): The US equivalent for electronic schematics. Note: While the NEC (NFPA 70) governs physical building wiring and conduit fill, it defers entirely to IEEE/ANSI standards for electronic schematic symbols on control boards. US designs often use simpler circles with internal text ('BUZ') rather than strict geometric representations.
  • Legacy UK (BS 3939): Superseded by IEC adoption in the UK, but still found in older British industrial control panels and vintage audio gear. It heavily relied on semi-circles and basic geometric shapes without distinguishing between active internal oscillators and passive transducers.

If you are sourcing a replacement for a board designed in the US in the 1990s, the schematic likely uses the IEEE 315 standard. If you are looking at a modern ESP32 dev board schematic from a Shenzhen-based manufacturer, it will almost exclusively use IEC 60617 symbols. You can cross-reference these standard definitions via the All About Circuits schematic symbol guide or the official IEC webstore.

Rows People Get Wrong: Active vs. Passive and Polarity Traps

Misinterpreting the buzzer symbol on a schematic leads to two catastrophic bench mistakes: frying the component or generating no sound at all. Here is where engineers and hobbyists consistently misread the table above.

Mistake 1: Confusing Row 1 (Passive Piezo) with a Polarized Capacitor

The IEC symbol for a passive piezo buzzer (Row 1) looks nearly identical to a polarized electrolytic capacitor—a curved plate facing a straight plate. The only difference is the radiating arrows pointing outward. If you miss the arrows, you might place a 100µF capacitor in series with your audio drive circuit, effectively shorting your AC audio signal to ground and silencing the output. Always look for the acoustic radiation arrows.

Mistake 2: Driving Row 2 (Active Electromagnetic) with PWM

Row 2 represents an active buzzer. It contains an internal oscillator ASIC. Hobbyists frequently wire this to an Arduino or ESP32 GPIO pin and write an analogWrite() or ledcWrite() PWM function to change the pitch. This will not work. An active buzzer has a fixed internal frequency (usually 2.7 kHz or 4 kHz). Applying a PWM square wave just rapidly turns the internal oscillator on and off, resulting in a distorted clicking sound. Active buzzers require a steady DC HIGH signal to sound, and a LOW to silence.

Mistake 3: Ignoring Polarity on Row 3 (Active Piezo)

Unlike passive piezos, active piezo buzzers (Row 3) have a built-in driver circuit. If you wire the GND pin to VCC and the VCC pin to GND, the reverse voltage will instantly destroy the internal CMOS oscillator chip. Always verify the '+' silkscreen marking on the PCB and the red/black wire coloring on the physical component before applying power.

Warning: Flyback Voltage on Electromagnetic Buzzers
If you are using an active electromagnetic buzzer (Row 2) driven by a BJT or MOSFET, the coil will generate a massive inductive voltage spike when the transistor switches off. You must place a flyback diode (e.g., 1N4148 or 1N4007) in parallel with the buzzer pins, with the cathode pointing toward VCC. Failing to do so will eventually punch through the transistor's junction and fry your microcontroller's GPIO pin.

Safe Interpretation When Markings Are Faded or Missing

On salvaged PCBs or poorly manufactured clone boards, the '+' polarity marking, the part number, or even the silkscreen outline of the buzzer symbol may be faded, scratched off, or entirely absent. Here is the exact diagnostic procedure to identify the buzzer type and pinout safely without guessing.

  1. Visual Inspection: Look for a small '+' molded into the plastic casing near one of the pins. On TDK and Murata passive piezos, there is often no polarity marking at all. On CUI Devices active buzzers, a red wire or a '+' stamped into the epoxy indicates VCC.
  2. The Multimeter Resistance Test: Set your multimeter to the Ohms (Ω) setting. Probe the two pins.
    • If the meter reads OL (Overload) or infinite resistance, it is a Piezoelectric buzzer (either active or passive). The piezo ceramic element acts as a capacitor, blocking DC.
    • If the meter reads between 12 Ω and 50 Ω, it is an Electromagnetic buzzer. You are measuring the DC resistance of the copper voice coil.
  3. The Safe Live Test (Active vs. Passive): To determine if a piezo buzzer is active or passive when markings are missing, use a current-limited DC test. Connect a 3.3V or 5V supply through a 100 Ω current-limiting resistor to one pin, and ground the other.
    • If it emits a loud, continuous, steady tone immediately upon connection, it is an Active Buzzer. The pin connected to the resistor (via the supply) is VCC. Mark it with a Sharpie.
    • If it only makes a single faint 'click' when connected, and another 'click' when disconnected, it is a Passive Buzzer. It requires an AC square wave (PWM) from a microcontroller to generate a continuous tone.

For deeper specifications on drive circuits and acoustic cavities, refer to the CUI Devices buzzer application notes, which detail the exact impedance curves and recommended matching networks for both piezo and magnetic variants. Never assume a buzzer's drive requirements based solely on its physical size; a 12mm passive piezo and a 12mm active piezo look identical from the outside but require entirely different microcontroller firmware to operate.