Skip to content
Buzzer / Piezo

Passive Piezo Buzzer

Piezo buzzer that requires PWM — play melodies and variable-pitch tones, not just fixed beeps.

A piezo buzzer that requires a driven PWM signal, allowing variable-pitch tones and simple melody playback rather than a fixed beep.

Specifications

Operating voltage3V - 5V DC
ControlRequires a driven square wave (PWM or the Arduino tone() function) — pitch equals drive frequency
Usable frequency range~2kHz - 5kHz for clearly audible tones (piezo response falls off outside this band)
Silent when idleNo internal oscillator — a constant HIGH or LOW produces no sound, unlike an active buzzer

Pinout

PinNameDescription
1VCC / I/OSignal input on breakout modules with 3 pins — a raw 2-lead piezo just has + and -
2GNDGround
3I/OOn 3-pin modules: the driven PWM/tone signal; on bare 2-lead piezos, drive across the two leads directly

tone() on Arduino drives this directly from a digital pin with no extra hardware; on ESP32 use the ledc PWM API instead since tone() isn't implemented the same way there.