The Adafruit Lithium Ion Battery (Part ID: 5035) is a high-capacity rechargeable battery designed for powering a wide range of electronic devices and projects. With a nominal voltage of 3.7V and a capacity of 10050mAh (10 Ah), this battery is ideal for applications requiring long-lasting, portable power. Its compact design and reliable performance make it a popular choice for hobbyists, engineers, and product developers.
The following table outlines the key technical details of the Adafruit Lithium Ion Battery:
Parameter | Value |
---|---|
Manufacturer | Adafruit |
Part ID | 5035 |
Nominal Voltage | 3.7V |
Capacity | 10050mAh (10 Ah) |
Chemistry | Lithium-Ion |
Maximum Charge Voltage | 4.2V |
Discharge Cutoff | 3.0V |
Maximum Discharge Rate | 2C (20A) |
Recommended Charge Rate | 0.5C (5A) |
Connector Type | JST-PH 2-pin |
Dimensions | 90mm x 60mm x 10mm |
Weight | ~200g |
The battery is equipped with a JST-PH 2-pin connector. The pinout is as follows:
Pin | Name | Description |
---|---|---|
1 | Positive (+) | Positive terminal of the battery (3.7V nominal) |
2 | Negative (-) | Negative terminal of the battery (ground) |
Connecting the Battery:
Voltage Regulation:
Charging the Battery:
Discharging the Battery:
To power an Arduino UNO with this battery, you can use a DC-DC boost converter to step up the voltage to 5V. Below is an example circuit and Arduino code:
// Example code to blink an LED using Arduino UNO powered by the battery
// Ensure the boost converter is set to output 5V for the Arduino
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 the LED on
delay(1000); // Wait for 1 second
digitalWrite(ledPin, LOW); // Turn the LED off
delay(1000); // Wait for 1 second
}
Battery Not Charging:
Device Not Powering On:
Battery Drains Quickly:
Overheating During Use:
Q: Can I use this battery to directly power a 5V device?
A: No, the battery's voltage ranges from 3.0V to 4.2V. Use a DC-DC boost converter to step up the voltage to 5V.
Q: How long will the battery last on a single charge?
A: Battery life depends on the load current. For example, at a 1A load, the battery can last approximately 10 hours (10050mAh ÷ 1000mA).
Q: Is the battery protected against overcharging and over-discharging?
A: No, this battery does not include built-in protection. Use an external protection circuit or a charger with safety features.
Q: Can I connect multiple batteries in series or parallel?
A: Yes, but ensure proper balancing and protection circuits are used to prevent damage or unsafe conditions.