

The EEMB 103450 is a lithium-ion rechargeable battery designed for compact and portable electronic devices. With a nominal voltage of 3.7V and a capacity of approximately 1000mAh, this battery is ideal for applications requiring reliable and efficient power storage in a small form factor. Its lightweight design and high energy density make it a popular choice for consumer electronics, IoT devices, and backup power systems.








The following table outlines the key technical details of the EEMB 103450 lithium-ion battery:
| Parameter | Value |
|---|---|
| Manufacturer | EEMB |
| Part ID | 103450 |
| Battery Type | Lithium-ion (Li-ion) |
| Nominal Voltage | 3.7V |
| Nominal Capacity | 1000mAh |
| Charging Voltage | 4.2V (maximum) |
| Discharge Cut-off Voltage | 2.75V |
| Standard Charge Current | 0.5C (500mA) |
| Maximum Charge Current | 1C (1000mA) |
| Standard Discharge Current | 0.5C (500mA) |
| Maximum Discharge Current | 1C (1000mA) |
| Operating Temperature | Charge: 0°C to 45°C |
| Discharge: -20°C to 60°C | |
| Dimensions (L x W x H) | 10mm x 34mm x 50mm |
| Weight | ~25g |
| Cycle Life | ≥500 cycles |
The EEMB 103450 battery typically comes with two terminals for connection:
| Pin | Description | Notes |
|---|---|---|
| Red (+) | Positive Terminal | Connect to the positive side of the circuit |
| Black (-) | Negative Terminal | Connect to the ground or negative side |
To power an Arduino UNO with the EEMB 103450 battery, you can use a DC-DC boost converter to step up the 3.7V nominal voltage to 5V. Below is an example circuit and code:
// Example code to blink an LED using Arduino UNO powered by the EEMB 103450 battery
// Ensure the battery is connected via a DC-DC boost converter to provide 5V to the Arduino
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 | Charger not compatible or faulty | Use a charger designed for lithium-ion batteries with a 4.2V output. |
| Battery drains quickly | Over-discharge or aging | Avoid discharging below 2.75V and replace the battery if cycle life is exceeded. |
| Battery overheats during use | Excessive current draw | Ensure the load does not exceed the maximum discharge current (1C). |
| Arduino does not power on | Insufficient voltage from the battery | Use a DC-DC boost converter to step up the voltage to 5V. |
Can I use this battery without a protection circuit?
How do I know when the battery is fully charged?
What happens if I over-discharge the battery?
Can I connect multiple 103450 batteries in series or parallel?
By following these guidelines, you can safely and effectively use the EEMB 103450 lithium-ion battery in your projects.