

LilyPad is a wearable electronic platform specifically designed for e-textiles and soft circuits. It features a series of sewable microcontrollers, sensors, and other components that can be easily integrated into fabric. The circular design of LilyPad boards allows for easy sewing with conductive thread, making it ideal for creating interactive garments and wearable projects.








Below are the key technical details for the LilyPad main board (e.g., LilyPad Arduino 328 Main Board):
The LilyPad board has several pins for connecting components. Below is a table describing the pin layout:
| Pin | Type | Description |
|---|---|---|
| 0-13 | Digital I/O | General-purpose digital input/output pins. Pins 3, 5, 6, 9, 10, and 11 support PWM. |
| A0-A5 | Analog Input | Analog input pins for reading sensor data. Can also be used as digital I/O pins. |
| + | Power (VCC) | Positive voltage supply pin (2.7V - 5.5V). |
| - | Ground (GND) | Ground connection for the circuit. |
| RST | Reset | Resets the microcontroller. |
Powering the LilyPad:
+ pin and the negative terminal to the - pin.Connecting Components:
Programming the LilyPad:
Below is an example code to blink an LED connected to pin 13 of the LilyPad:
// Example: Blink an LED connected to pin 13 on the LilyPad
// This code will turn the LED on for 1 second, then off for 1 second.
void setup() {
pinMode(13, OUTPUT); // Set pin 13 as an output pin
}
void loop() {
digitalWrite(13, HIGH); // Turn the LED on
delay(1000); // Wait for 1 second
digitalWrite(13, LOW); // Turn the LED off
delay(1000); // Wait for 1 second
}
The LilyPad is not powering on:
+ and - connections are secure and not reversed.The LilyPad is not recognized by the computer:
Components are not functioning as expected:
Can I wash garments with a LilyPad circuit?
Yes, but you must remove the power source and ensure all components are washable. Hand washing is recommended.
What type of thread should I use?
Use conductive thread specifically designed for e-textiles. Avoid regular thread for electrical connections.
Can I connect multiple sensors to the LilyPad?
Yes, you can connect multiple sensors to the analog or digital pins, but ensure the total current draw does not exceed the power supply limits.
By following this documentation, you can successfully integrate the LilyPad into your wearable electronics projects!