

The LilyPad Simple Power (Manufacturer Part ID: DEV-10085) is a compact power supply module designed by SparkFun Electronics. It is specifically tailored for use in wearable electronics and LilyPad Arduino projects. This module provides a stable voltage output, ensuring reliable operation of your circuits. Its small form factor and lightweight design make it ideal for e-textile and wearable applications.








The LilyPad Simple Power module is designed to provide a stable power supply for low-power electronic circuits. Below are its key technical details:
| Parameter | Specification |
|---|---|
| Input Voltage Range | 3.7V (via LiPo battery) or 5V (via USB) |
| Output Voltage | 5V (regulated) |
| Output Current | Up to 500mA |
| Charging Current | 100mA (via USB) |
| Dimensions | 50mm x 25mm |
| Weight | ~3g |
The LilyPad Simple Power module has a simple pin layout for easy integration into circuits. Below is the pin configuration:
| Pin Name | Description |
|---|---|
| + (Positive) | Provides regulated 5V output for powering your circuit |
| - (Negative) | Ground connection for the circuit |
| USB | Micro-USB port for charging the connected LiPo battery and powering the module |
| BAT | JST connector for connecting a 3.7V LiPo battery |
The LilyPad Simple Power module is straightforward to use and integrates seamlessly with LilyPad Arduino boards and other wearable electronics. Follow the steps below to use the module effectively:
Although the LilyPad Simple Power is primarily used with LilyPad Arduino boards, it can also power an Arduino UNO. Below is an example code snippet for a simple LED blink project:
// Example: Blink an LED using Arduino UNO powered by LilyPad Simple Power
const int ledPin = 13; // Pin connected to the onboard LED
void setup() {
pinMode(ledPin, OUTPUT); // Set the LED pin 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
}
Note: Ensure the LilyPad Simple Power module is connected to the Arduino UNO's power input pins (Vin and GND) to supply 5V.
Module Not Powering the Circuit:
Battery Not Charging:
Overheating:
Output Voltage Not Stable:
Q: Can I use the LilyPad Simple Power without a battery?
A: Yes, the module can be powered directly via the USB port without a battery. However, the USB power source must provide sufficient current for your circuit.
Q: What happens if I connect both USB and a battery?
A: The module will prioritize USB power and charge the connected battery simultaneously.
Q: Can I use this module with non-LilyPad Arduino boards?
A: Yes, the module can power any Arduino board or circuit that requires a 5V regulated supply, as long as the current draw does not exceed 500mA.
Q: Is the module waterproof?
A: No, the LilyPad Simple Power is not waterproof. Avoid exposing it to moisture or liquids.
By following this documentation, you can effectively integrate the LilyPad Simple Power module into your wearable electronics projects and ensure reliable performance.