Fingerprint Sensor AS608 - A Beginner's Guide
One touch can replace keys. This project uses an optical fingerprint sensor to enroll users and then grant access with a quick scan.
read tutorial →The Buzzer Module for Arduino is a 5V active buzzer breakout that beeps on a HIGH signal. No tone() library needed, no frequency math — just drive the input pin HIGH and it sounds. LOW = silent. Used for alarms, button feedback, alert tones, countdown timers, and any project that needs an audible signal.
Active buzzer = internal oscillator. Drive it with any digital GPIO. Compatible with Arduino, ESP32, Raspberry Pi, and similar boards on 3.3–5V logic.
const int BUZZER = 8;
void setup() {
pinMode(BUZZER, OUTPUT);
}
void loop() {
digitalWrite(BUZZER, HIGH);
delay(200); // beep 200 ms
digitalWrite(BUZZER, LOW);
delay(800); // silent 800 ms
}
Active. Has a built-in oscillator. You only switch it on/off — no tone() needed. For melodies and variable-pitch sound, buy a passive buzzer instead.
No. Active buzzers play one fixed frequency (~2.3 kHz). PWM does not change pitch on this module — only on/off cycle. For pitch control use a passive buzzer.
Yes, but slightly quieter. The transistor switch keeps GPIO load light, so any 3.3V or 5V controller drives it safely.
Around 85 dB at 10 cm — loud enough for room-level alarms. Distance reduces volume quickly.
The module includes a transistor switch and base resistor so your GPIO drives only a logic signal, not the buzzer current. Bare buzzers can stress weaker GPIO pins.
Yes — all stock ships from our Quezon City warehouse. Order before 4 PM weekdays for same-day cutoff via J&T or LBC.
7-day inspection window for DOA units. Email proof of issue and we'll ship a replacement or refund. Used / installed parts aren't returnable unless faulty.
Manila stock. Order before 16:00 PHT, ships today via J&T or LBC. Provincial: 1–3 working days.
Schools / class POs: we accept Purchase Orders for accredited schools and universities. contact us with your PO details.
Returns: 7-day inspection window for DOA units. Email proof of issue and we ship a replacement.
One touch can replace keys. This project uses an optical fingerprint sensor to enroll users and then grant access with a quick scan.
read tutorial →Wire a joystick to your Arduino, read X/Y, then print UP / DOWN / LEFT / RIGHT to the serial monitor.
read tutorial →Bench-test a 43 A motor driver before wiring the full project. Catches weak power, mis-pinning, and dead boards before they cost you time.
read tutorial →Coming from UNO and the Pico won't show a COM port? Here's the BOOTSEL trick, the driver fix, and the first sketch that actually works.
read tutorial →Share what you built. Photos, BOM, what worked, what didn't.
view thread →Symptom + what you tried + clear photo = answers within hours.
view thread →Brownout reset when adding a sensor? Notes on supply decoupling and GPIO checks.
view thread →Upload failing on your first Uno? Driver, COM port, board match — checklist inside.
view thread →