The Adafruit 12mm Coin Cell Breakout is a compact and convenient solution for powering small, low-power electronic projects. This breakout board is specifically designed to hold a 12mm coin cell battery, such as the CR1220. It includes an integrated battery holder, an on-board power switch, and an LED that serves as a power indicator. This component is ideal for wearable electronics, portable devices, and any application where a compact, on-the-go power source is required.
Pin Name | Description |
---|---|
+ | Positive terminal connected to the battery |
- | Negative terminal connected to the battery |
S1 | Slide switch to control power |
LED | Power indicator LED |
Inserting the Battery:
Connecting to a Circuit:
Powering the Circuit:
LED Not Lighting Up:
Insufficient Power to Circuit:
Q: Can I use a battery other than the CR1220? A: The holder is designed for 12mm coin cells, so other batteries with the same dimensions and voltage should work.
Q: How long will the battery last? A: Battery life depends on the capacity of the coin cell and the current draw of your circuit. Check the battery's datasheet for capacity information.
Q: Is it possible to recharge the battery using this breakout board? A: No, this breakout board does not include charging circuitry. Use only non-rechargeable coin cell batteries.
Q: Can I disable the power indicator LED? A: Yes, you can desolder the LED or cut the trace leading to it if you need to conserve power.
// Example code to demonstrate how to control an LED using the Adafruit 12mm Coin Cell Breakout
const int ledPin = 13; // Built-in LED pin on Arduino UNO
void setup() {
pinMode(ledPin, OUTPUT); // Set the LED pin as an output
}
void loop() {
digitalWrite(ledPin, HIGH); // Turn on the LED
delay(1000); // Wait for 1 second
digitalWrite(ledPin, LOW); // Turn off the LED
delay(1000); // Wait for 1 second
}
Note: This example assumes that the Adafruit 12mm Coin Cell Breakout is connected to the Arduino UNO's 5V and GND pins, and that the onboard LED is used as an indicator. If you're using an external LED, make sure to include a current-limiting resistor in series with the LED to prevent damage.