

The SparkFun LilyPad Power Supply (DEV-11259) is a compact and lightweight power supply module designed specifically for wearable electronics and LilyPad Arduino projects. Manufactured by SparkFun Electronics, this module provides a reliable and efficient source of power for e-textile applications. It is designed to integrate seamlessly into wearable projects, offering a convenient way to power your circuits using a coin cell battery or other compatible power sources.








Below are the key technical details of the SparkFun LilyPad Power Supply:
| Parameter | Specification |
|---|---|
| Input Voltage Range | 2.7V to 5.5V |
| Output Voltage | 5V (regulated) |
| Output Current | Up to 150mA |
| Dimensions | 20mm diameter |
| Weight | ~1.5g |
| Battery Compatibility | Coin cell batteries (e.g., CR2032) |
| Connector Type | JST connector for external power sources |
The LilyPad Power Supply has a simple pin layout for easy integration into circuits:
| Pin Name | Description |
|---|---|
+ |
Positive output terminal (5V regulated output) |
- |
Ground terminal (common ground for the circuit) |
SW |
Switch pin to enable or disable the power supply (connect to ground to disable) |
Power Source Connection:
Connecting to a Circuit:
+ pin to the positive power rail of your circuit.- pin to the ground rail of your circuit.SW pin to ground to disable the output.Powering a LilyPad Arduino:
+ pin to the VCC pin of the LilyPad Arduino.- pin to the GND pin of the LilyPad Arduino.SW pin to add an external switch for convenient power control.Although the LilyPad Power Supply is designed for wearable projects, it can also be used to power an Arduino UNO. Below is an example of how to connect it:
+ pin of the LilyPad Power Supply to the 5V pin of the Arduino UNO.- pin of the LilyPad Power Supply to the GND pin of the Arduino UNO.Here is a simple Arduino sketch to test the power supply:
// Simple Blink Sketch for Testing Power Supply
// This code blinks the built-in LED on pin 13 of the Arduino UNO.
void setup() {
pinMode(13, OUTPUT); // Set pin 13 as an output
}
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
}
| Issue | Possible Cause | Solution |
|---|---|---|
| No output voltage | Battery is not inserted or is depleted | Check the battery and replace it if necessary. |
| Output voltage is unstable | Overcurrent or incompatible power source | Ensure the circuit draws less than 150mA and the input voltage is 2.7V-5.5V. |
| Power supply overheats | Excessive current draw | Reduce the load on the power supply to within the 150mA limit. |
| Circuit does not power on | SW pin is connected to ground |
Disconnect the SW pin from ground to enable the power supply. |
Can I use a rechargeable battery with this module?
What happens if I exceed the 150mA current limit?
Can I use this power supply with non-LilyPad projects?
Is the module waterproof?
By following this documentation, you can effectively integrate the SparkFun LilyPad Power Supply into your wearable electronics and other low-power projects.