

The 18650 Li-ion battery is a cylindrical rechargeable lithium-ion battery cell, widely recognized for its high energy density, long cycle life, and compact size. With a nominal voltage of 3.6V or 3.7V and a typical capacity ranging from 2000mAh to 3500mAh, it is a popular choice for portable electronics, power tools, flashlights, and electric vehicles. Its reliability and efficiency make it a cornerstone in modern energy storage solutions.








The following table outlines the key technical details of a standard 18650 Li-ion battery. Note that specifications may vary slightly depending on the manufacturer and model.
| Parameter | Specification | 
|---|---|
| Nominal Voltage | 3.6V or 3.7V | 
| Fully Charged Voltage | 4.2V | 
| Cut-off Voltage | 2.5V to 3.0V | 
| Typical Capacity | 2000mAh to 3500mAh | 
| Maximum Discharge Current | 5A to 30A (depending on the model) | 
| Charging Current | Standard: 0.5C, Maximum: 1C | 
| Charging Voltage | 4.2V ± 0.05V | 
| Cycle Life | 300 to 500 cycles (at 80% capacity) | 
| Dimensions | 18mm (diameter) x 65mm (length) | 
| Weight | ~45g | 
| Chemistry | Lithium Cobalt Oxide (LiCoO2) or other variants | 
The 18650 battery has two terminals:
| Pin | Description | 
|---|---|
| Positive (+) | The anode terminal, typically marked with a "+" symbol. | 
| Negative (-) | The cathode terminal, typically marked with a "-" symbol. | 
Note: Some 18650 batteries come with built-in protection circuits, which may slightly increase their length and add additional safety features like overcharge, over-discharge, and short-circuit protection.
Below is an example of connecting an 18650 battery to an Arduino UNO using a step-down converter (e.g., LM2596) to regulate the voltage to 5V.
// Example code to blink an LED using an Arduino UNO powered by an 18650 battery
// Ensure the 18650 battery is connected to a step-down converter set to 5V output.
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
}
Note: Always monitor the battery voltage during operation to avoid over-discharge.
Battery Not Charging
Battery Drains Quickly
Battery Overheats During Use
Battery Voltage Drops Rapidly
Q: Can I use a regular power supply to charge an 18650 battery?
A: No, always use a dedicated Li-ion battery charger with CC/CV modes to ensure safe charging.
Q: How do I know if my 18650 battery is protected?
A: Protected batteries are slightly longer (usually ~67mm) and often labeled as "protected." They include a built-in protection circuit.
Q: Can I solder directly to the battery terminals?
A: It is not recommended, as excessive heat can damage the battery. Use battery holders or spot welding for connections.
Q: How do I dispose of a dead 18650 battery?
A: Take it to a certified e-waste recycling facility. Do not throw it in regular trash.
By following these guidelines, you can safely and effectively use the 18650 Li-ion battery in your projects and devices.