

The 18650 7.4V 5000mAh is a rechargeable lithium-ion battery pack consisting of two 18650 cells connected in series. It offers a nominal voltage of 7.4V and a capacity of 5000mAh, making it ideal for applications requiring high energy density and long cycle life. This battery is widely used in portable electronics, electric vehicles, power tools, and backup power systems due to its reliability and efficiency.








The following table outlines the key technical details of the 18650 7.4V 5000mAh battery:
| Parameter | Specification |
|---|---|
| Nominal Voltage | 7.4V |
| Capacity | 5000mAh |
| Chemistry | Lithium-ion (Li-ion) |
| Configuration | 2 cells in series (2S) |
| Maximum Charging Voltage | 8.4V |
| Discharge Cut-off Voltage | 6.0V |
| Maximum Discharge Current | 10A (varies by manufacturer) |
| Charging Current | Standard: 1A, Max: 2.5A |
| Cycle Life | ≥500 cycles |
| Operating Temperature | Charge: 0°C to 45°C |
| Discharge: -20°C to 60°C | |
| Dimensions | ~18mm (diameter) x 65mm (length per cell) |
| Weight | ~90g (varies by manufacturer) |
The 18650 7.4V 5000mAh battery pack typically has two terminals for connection:
| Pin | Label | Description |
|---|---|---|
| 1 | + (Positive) | Positive terminal for output voltage |
| 2 | - (Negative) | Negative terminal for output voltage |
Some battery packs may include additional wires for features like battery management systems (BMS) or temperature monitoring.
The 18650 7.4V 5000mAh battery can power an Arduino UNO via the VIN pin. Below is an example of connecting the battery to an Arduino UNO and reading the battery voltage using a voltage divider.
// Define the analog pin connected to the voltage divider
const int voltagePin = A0;
// Voltage divider resistor values (in ohms)
const float R1 = 10000.0; // Resistor connected to battery +
const float R2 = 10000.0; // Resistor connected to GND
void setup() {
Serial.begin(9600); // Initialize serial communication
}
void loop() {
int rawValue = analogRead(voltagePin); // Read analog value
float voltage = (rawValue / 1023.0) * 5.0; // Convert to voltage (0-5V range)
// Calculate actual battery voltage using the voltage divider formula
float batteryVoltage = voltage * ((R1 + R2) / R2);
// Print the battery voltage to the Serial Monitor
Serial.print("Battery Voltage: ");
Serial.print(batteryVoltage);
Serial.println(" V");
delay(1000); // Wait for 1 second before the next reading
}
Battery Not Charging
Battery Drains Quickly
Battery Overheats
Arduino Not Powering On
Q1: Can I use this battery without a BMS?
A1: It is not recommended. A BMS ensures safe operation by preventing overcharging, over-discharging, and short circuits.
Q2: How long does it take to charge this battery?
A2: Charging time depends on the charger current. For a 1A charger, it takes approximately 5-6 hours.
Q3: Can I connect multiple 18650 7.4V 5000mAh batteries in parallel?
A3: Yes, but ensure all batteries are at the same voltage level before connecting and use a BMS designed for parallel configurations.
Q4: Is this battery safe for outdoor use?
A4: Yes, but avoid exposing it to water or extreme temperatures. Use a waterproof enclosure if necessary.