

The LilyPad Buzzer (Manufacturer Part ID: DEV-08463) is a small, lightweight, and sewable electronic component designed by SparkFun Electronics. It is part of the LilyPad series, which is specifically tailored for wearable electronics and e-textile projects. The buzzer produces sound when powered, making it ideal for applications requiring audio feedback, such as alarms, notifications, or interactive designs.








The LilyPad Buzzer is designed to be simple and efficient for wearable projects. Below are its key technical details:
| Parameter | Specification |
|---|---|
| Operating Voltage | 2.7V to 5.5V |
| Current Consumption | ~30mA at 5V |
| Sound Frequency | ~2kHz |
| Dimensions | 20mm diameter |
| Weight | ~1.5g |
| Mounting Style | Sewable with conductive thread |
The LilyPad Buzzer has two sewable connection pads:
| Pin Name | Description |
|---|---|
+ |
Positive terminal. Connect to the positive voltage supply (e.g., 3.3V or 5V). |
- |
Negative terminal. Connect to ground (GND). |
The LilyPad Buzzer is straightforward to use in circuits. Follow the steps below to integrate it into your project:
+ pad to a voltage source (2.7V to 5.5V) and the - pad to ground (GND). You can use conductive thread, wires, or alligator clips for connections.+ pad. This can be achieved using a microcontroller like an Arduino.Below is an example of how to connect and control the LilyPad Buzzer using an Arduino UNO:
+ pad of the LilyPad Buzzer to Arduino pin 9.- pad of the LilyPad Buzzer to Arduino GND./*
Example code to control the LilyPad Buzzer with Arduino UNO.
This code generates a simple tone on the buzzer.
*/
int buzzerPin = 9; // Pin connected to the LilyPad Buzzer
void setup() {
pinMode(buzzerPin, OUTPUT); // Set the buzzer pin as an output
}
void loop() {
tone(buzzerPin, 2000); // Generate a 2kHz tone
delay(1000); // Wait for 1 second
noTone(buzzerPin); // Stop the tone
delay(1000); // Wait for 1 second
}
tone() function to generate different frequencies for varying sounds.noTone() function stops the sound output.| Issue | Possible Cause | Solution |
|---|---|---|
| No sound from the buzzer | Incorrect wiring or loose connections | Verify connections to + and - pads. |
| Buzzer sounds weak or distorted | Insufficient voltage or current | Ensure the supply voltage is within 2.7V-5.5V. |
| Buzzer not responding to Arduino | Incorrect pin configuration in code | Check the pin number in the Arduino sketch. |
| Short circuit in wearable project | Conductive thread touching unintentionally | Ensure threads are insulated and do not overlap. |
Can I use the LilyPad Buzzer without a microcontroller?
What type of sound does the buzzer produce?
Is the LilyPad Buzzer washable?
Can I use the LilyPad Buzzer with other LilyPad components?
By following this documentation, you can effectively integrate the LilyPad Buzzer into your wearable electronics projects and bring your designs to life with sound!