

The EEMB LP103454 is a rechargeable lithium-ion battery with a nominal voltage of 3.7V and a capacity of 2000mAh. This compact and lightweight battery is ideal for powering a wide range of portable electronic devices, including IoT devices, wearables, handheld gadgets, and small robotics. Its high energy density and rechargeable nature make it a reliable and eco-friendly power source.








| Parameter | Value |
|---|---|
| Manufacturer | EEMB |
| Part Number | LP103454 |
| Battery Type | Lithium-Ion (Li-ion) |
| Nominal Voltage | 3.7V |
| Capacity | 2000mAh |
| Charging Voltage | 4.2V (maximum) |
| Discharge Cut-off Voltage | 2.75V |
| Maximum Discharge Current | 2C (4A) |
| Standard Charge Current | 0.5C (1A) |
| Dimensions (L x W x H) | 10mm x 34mm x 54mm |
| Weight | ~35g |
| Operating Temperature | -20°C to 60°C (discharge) |
| Storage Temperature | -20°C to 45°C |
The battery typically has two terminals: Positive (+) and Negative (-). These terminals are connected via wires or tabs for integration into circuits.
| Pin Name | Description | Wire Color (Typical) |
|---|---|---|
| Positive (+) | Battery positive terminal | Red |
| Negative (-) | Battery negative terminal | Black |
The battery can be used to power an Arduino UNO via its Vin pin. Below is an example of how to connect the battery with a step-up converter to provide the required 5V for the Arduino.
// Example code to blink an LED on Arduino UNO powered by a 3.7V battery
// Ensure the battery is connected via a step-up converter to provide 5V.
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
}
| Issue | Possible Cause | Solution |
|---|---|---|
| Battery does not charge | Faulty charger or incorrect voltage | Verify the charger and ensure it outputs 4.2V. |
| Battery drains quickly | Excessive load or aging battery | Reduce the load or replace the battery. |
| Battery overheats during charging | Overcharging or faulty charger | Use a proper lithium-ion charger with CC/CV profile. |
| Circuit does not power on | Incorrect polarity or loose connections | Check connections and ensure correct polarity. |
Can I use this battery without a protection circuit?
It is not recommended. A protection circuit module (PCM) ensures safe operation by preventing overcharging, over-discharging, and short circuits.
How long does it take to fully charge the battery?
With a standard charge current of 1A, it takes approximately 2-3 hours to fully charge the battery.
Can I connect multiple batteries in series or parallel?
Yes, but ensure you use a proper battery management system (BMS) to balance the cells and prevent overcharging or over-discharging.
What is the lifespan of this battery?
The battery typically lasts for 300-500 charge cycles, depending on usage and charging conditions.
By following the guidelines in this documentation, you can safely and effectively use the EEMB LP103454 3.7V 2000mAh battery in your projects.