

The Lithium-ion Battery 7.4V 2000mAh by Elegoo is a rechargeable power source designed for applications requiring a compact, lightweight, and high-capacity energy solution. With a nominal voltage of 7.4V and a capacity of 2000mAh, this battery is ideal for powering portable electronics, robotics, electric vehicles, and other devices that demand reliable and efficient energy storage.








Below are the key technical details of the Elegoo Lithium-ion Battery 7.4V 2000mAh:
| Parameter | Specification |
|---|---|
| Nominal Voltage | 7.4V |
| Capacity | 2000mAh (2Ah) |
| Chemistry | Lithium-ion (Li-ion) |
| Maximum Discharge Rate | 2C (4A) |
| Charging Voltage | 8.4V (max) |
| Charging Current | 0.5C (1A recommended) |
| Dimensions | 70mm x 38mm x 20mm |
| Weight | ~100g |
| Connector Type | JST or XT60 (varies by model) |
| Operating Temperature | -20°C to 60°C |
| Storage Temperature | -10°C to 45°C |
The battery typically comes with a two-pin connector (e.g., JST or XT60). Below is the pin configuration:
| Pin | Description |
|---|---|
| + | Positive terminal (7.4V nominal) |
| - | Negative terminal (Ground) |
+) to the positive input of your circuit and the negative terminal (-) to the ground. Ensure the connector type matches your device or use an adapter if necessary.To power an Arduino UNO with this battery, you can connect it to the Arduino's VIN and GND pins. Below is an example circuit and code to read the battery voltage using an analog pin:
// Arduino code to read battery voltage using a voltage divider
const int batteryPin = A0; // Analog pin connected to the voltage divider
const float resistorRatio = 2.0; // Ratio of the voltage divider (10kΩ:10kΩ)
const float referenceVoltage = 5.0; // Arduino's reference voltage (5V)
void setup() {
Serial.begin(9600); // Initialize serial communication
}
void loop() {
int rawValue = analogRead(batteryPin); // Read analog value
float voltage = (rawValue / 1023.0) * referenceVoltage * resistorRatio;
Serial.print("Battery Voltage: ");
Serial.print(voltage);
Serial.println(" V");
delay(1000); // Wait 1 second before the next reading
}
Battery Not Charging
Battery Drains Quickly
Overheating During Use
Arduino Not Powering On
Q: Can I use this battery to power a 5V device?
A: Yes, but you will need a voltage regulator or DC-DC step-down converter to safely step down the 7.4V to 5V.
Q: How long will the battery last on a single charge?
A: The runtime depends on the load. For example, a 1A load will last approximately 2 hours (2000mAh ÷ 1000mA).
Q: Is it safe to leave the battery connected to the charger?
A: No, it is not recommended to leave the battery connected to the charger after it is fully charged, as this may reduce its lifespan.
Q: Can I connect multiple batteries in series or parallel?
A: Yes, but ensure you use a proper BMS to balance the cells and prevent overcharging or over-discharging.