

The 3.7V 2000mAh Rechargeable Battery (Manufacturer: YTBNA, Part ID: Lithium battery 103450) is a lithium-ion battery designed to provide reliable power for a wide range of portable electronic devices. With a nominal voltage of 3.7V and a capacity of 2000mAh, this battery is ideal for applications requiring compact, lightweight, and rechargeable power sources.








Below are the key technical details for the 3.7V 2000mAh Rechargeable Battery:
| Parameter | Specification |
|---|---|
| Nominal Voltage | 3.7V |
| Capacity | 2000mAh |
| Chemistry | Lithium-ion (Li-ion) |
| Charging Voltage | 4.2V ± 0.05V |
| Discharge Cut-off Voltage | 2.75V ± 0.1V |
| Maximum Discharge Current | 2C (4A) |
| Standard Charge Current | 0.5C (1A) |
| Dimensions (L x W x H) | 50mm x 34mm x 10mm |
| Weight | ~35g |
| Operating Temperature | Charge: 0°C to 45°C, Discharge: -20°C to 60°C |
| Cycle Life | ≥ 500 cycles (at 80% capacity retention) |
The battery typically has two terminals for connection:
| Pin | Description | Notes |
|---|---|---|
| Positive (+) | Positive terminal | Connect to the positive side of the circuit. |
| Negative (-) | Negative terminal | Connect to the ground or negative side of the circuit. |
Note: Some batteries may include a built-in protection circuit module (PCM) to prevent overcharging, over-discharging, and short circuits.
To power an Arduino UNO with this battery, you can use a DC-DC step-up converter to boost the 3.7V to 5V. Below is an example circuit and code:
// Example code to blink an LED using Arduino UNO powered by a 3.7V battery
// Ensure the battery voltage is stepped up to 5V before connecting to Arduino
const int ledPin = 13; // Built-in LED pin on Arduino UNO
void setup() {
pinMode(ledPin, OUTPUT); // Set LED pin as 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: Always monitor the battery voltage during operation to avoid over-discharging.
| Issue | Possible Cause | Solution |
|---|---|---|
| Battery not charging | Charger not compatible or faulty | Use a charger designed for Li-ion batteries with CC/CV profile. |
| Battery drains quickly | Over-discharge or aging battery | Avoid deep discharges; replace if cycle life is exceeded. |
| Battery overheats during use | Excessive current draw | Ensure the load does not exceed the maximum discharge current (4A). |
| Arduino resets or malfunctions | Insufficient voltage or current | Use a step-up converter to provide stable 5V to the Arduino. |
Can I use this battery directly with a 5V device?
How do I know when the battery is fully charged?
Is it safe to leave the battery connected to the charger?
What happens if I over-discharge the battery?
By following the guidelines in this documentation, you can safely and effectively use the 3.7V 2000mAh Rechargeable Battery in your projects.