

The LilyPad Coin Cell Battery Holder (Manufacturer Part ID: DEV-10730) by SparkFun Electronics is a compact and lightweight battery holder designed to securely fit a coin cell battery. It is specifically tailored for wearable electronics and projects using the LilyPad Arduino platform. This holder allows for easy battery replacement and provides a reliable power source for low-power electronic circuits.








The following table outlines the key technical details of the LilyPad Coin Cell Battery Holder:
| Specification | Details |
|---|---|
| Manufacturer | SparkFun Electronics |
| Part Number | DEV-10730 |
| Supported Battery Type | CR2032 (3V coin cell battery) |
| Dimensions | 20mm x 32mm |
| Weight | 1.5g |
| Operating Voltage | 3V (nominal, based on battery used) |
| Current Rating | Dependent on the connected circuit |
| Mounting Style | Sewable pads for e-textiles |
| Material | PCB with conductive sewable pads |
The LilyPad Coin Cell Battery Holder has two sewable connection pads:
| Pad Name | Description |
|---|---|
| + (Positive) | Positive terminal of the battery (3V output) |
| - (Negative) | Negative terminal of the battery (ground/GND) |
These pads are designed to be sewn into fabric using conductive thread or connected to other components via soldering.
Although the LilyPad Coin Cell Battery Holder is primarily used with LilyPad Arduino boards, it can also power small circuits connected to an Arduino UNO. Below is an example of using the holder to power an LED:
The following code demonstrates how to blink an LED powered by the LilyPad Coin Cell Battery Holder:
// Simple LED Blink Example
// This code assumes the LED is connected to 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
}
Note: The Arduino UNO cannot be powered directly by the LilyPad Coin Cell Battery Holder due to its higher current requirements. Use this holder only for low-power components like LEDs or sensors.
Battery Not Fitting Properly:
No Power Output:
Short Circuit in Sewn Connections:
Low Battery Life:
Q: Can I use a different coin cell battery with this holder?
A: The holder is specifically designed for CR2032 batteries. Other coin cell batteries may not fit securely or provide the correct voltage.
Q: Is the holder washable?
A: The holder itself is not waterproof or washable. If used in wearable electronics, ensure it is removed before washing the fabric.
Q: Can I solder wires to the pads instead of sewing?
A: Yes, the pads are compatible with soldering for more permanent connections.
Q: What is the maximum current the holder can handle?
A: The current is limited by the CR2032 battery, which typically provides a maximum of 3-4mA for continuous use and up to 20mA for short bursts.
By following this documentation, you can effectively integrate the LilyPad Coin Cell Battery Holder into your projects and ensure reliable performance.