

The LilyPad LED (Manufacturer Part ID: DEV-10081) is a sewable light-emitting diode (LED) designed by SparkFun Electronics for use in e-textiles and wearable electronics. This component is part of the LilyPad ecosystem, which is specifically tailored for integration into fabric-based projects. The LilyPad LED is lightweight, flexible, and features large sewable pads, making it easy to connect with conductive thread.








The LilyPad LED is a simple yet versatile component. Below are its key technical details:
| Parameter | Value |
|---|---|
| Operating Voltage | 2.0V - 5.5V |
| Typical Forward Voltage | 2.0V (Red), 3.2V (Blue/White/Green) |
| Maximum Current | 20mA |
| LED Color Options | Red, Blue, Green, White, etc. |
| Dimensions | 11mm diameter |
| Mounting Style | Sewable with conductive thread |
The LilyPad LED has two sewable pads for electrical connections:
| Pad Name | Description |
|---|---|
| Positive (+) | Connect to the positive terminal of the power source or microcontroller output. |
| Negative (-) | Connect to the ground (GND) of the circuit. |
The LilyPad LED is straightforward to use in e-textile projects. Follow the steps below to integrate it into your design:
The LilyPad LED can be controlled using an Arduino UNO. Below is an example code to blink the LED:
// Example code to blink a LilyPad LED using Arduino UNO
// Connect the Positive (+) pad of the LilyPad LED to pin 9
// Connect the Negative (-) pad to GND
const int ledPin = 9; // Pin connected to the LilyPad LED
void setup() {
pinMode(ledPin, OUTPUT); // Set pin 9 as an output
}
void loop() {
digitalWrite(ledPin, HIGH); // Turn the LED on
delay(1000); // Wait for 1 second
digitalWrite(ledPin, LOW); // Turn the LED off
delay(1000); // Wait for 1 second
}
The LED does not light up.
The LED is dim or flickering.
The LED gets hot.
Short circuits in the fabric.
Q: Can I use multiple LilyPad LEDs in the same circuit?
A: Yes, you can sew multiple LilyPad LEDs in parallel or series, depending on your design. Ensure the power supply can handle the total current draw.
Q: Is the LilyPad LED washable?
A: The LilyPad LED is washable, but you must ensure all connections are secure and use washable conductive thread. Hand washing is recommended.
Q: Can I control the brightness of the LilyPad LED?
A: Yes, you can control the brightness using pulse-width modulation (PWM) if connected to a microcontroller like the Arduino UNO.
By following this documentation, you can effectively integrate the LilyPad LED into your e-textile projects and troubleshoot common issues.