

The Li-ion Battery 18650-2000mAh 3.7V 7.4Wh is a cylindrical rechargeable lithium-ion battery widely used in various applications. With a nominal voltage of 3.7V and a capacity of 2000mAh, it provides a total energy capacity of 7.4 watt-hours. This battery is known for its high energy density, lightweight design, and long cycle life, making it a popular choice for portable electronics, power tools, flashlights, and electric vehicles.








Below are the key technical details of the Li-ion Battery 18650-2000mAh 3.7V 7.4Wh:
| Parameter | Value |
|---|---|
| Nominal Voltage | 3.7V |
| Capacity | 2000mAh |
| Energy Capacity | 7.4Wh |
| Maximum Charging Voltage | 4.2V |
| Minimum Discharge Voltage | 2.5V |
| Standard Charge Current | 0.5C (1A) |
| Maximum Charge Current | 1C (2A) |
| Standard Discharge Current | 0.5C (1A) |
| Maximum Discharge Current | 3C (6A) |
| Dimensions | 18mm (diameter) x 65mm (length) |
| Weight | ~45g |
| Operating Temperature (Charge) | 0°C to 45°C |
| Operating Temperature (Discharge) | -20°C to 60°C |
| Cycle Life | ≥500 cycles |
The 18650 battery has two terminals:
| Pin | Description |
|---|---|
| Positive (+) | The positive terminal of the battery. Connect to the positive side of the circuit. |
| Negative (-) | The negative terminal of the battery. Connect to the ground or negative side of the circuit. |
Charging the Battery:
Connecting the Battery:
Protection Circuit:
Discharging the Battery:
To power an Arduino UNO with the 18650 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 18650 battery
// Ensure the battery is connected via a DC-DC 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
}
Battery Not Charging:
Battery Overheating:
Battery Drains Quickly:
Battery Voltage Drops Below 2.5V:
Can I use this battery without a protection circuit?
How do I know when the battery is fully charged?
Can I connect multiple 18650 batteries in series or parallel?
What happens if I overcharge the battery?
This documentation provides a comprehensive guide to safely and effectively use the Li-ion Battery 18650-2000mAh 3.7V 7.4Wh in your projects.