

The 18650 Li-ion battery is a rechargeable lithium-ion battery cell with a cylindrical shape, measuring 18mm in diameter and 65mm in length. It is widely recognized for its high energy density, long cycle life, and reliability. These batteries are commonly used in portable electronics, power tools, flashlights, laptops, and electric vehicles. Their versatility and performance make them a popular choice for both consumer and industrial applications.








The following table outlines the key technical specifications of a standard 18650 Li-ion battery. Note that specific values may vary depending on the manufacturer and model.
| Parameter | Specification |
|---|---|
| Nominal Voltage | 3.6V - 3.7V |
| Fully Charged Voltage | 4.2V |
| Cut-off Voltage | 2.5V - 3.0V |
| Capacity | 2000mAh - 3500mAh (varies by model) |
| Maximum Discharge Current | 5A - 30A (varies by model) |
| Charging Current | Standard: 0.5C, Maximum: 1C |
| Cycle Life | 300 - 500 cycles (typical) |
| Operating Temperature | -20°C to 60°C |
| Dimensions | 18mm (diameter) x 65mm (length) |
| Weight | ~45g |
The 18650 Li-ion battery has two terminals:
| Pin Name | 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. |
To power an Arduino UNO with an 18650 battery, you can use a DC-DC step-up converter to boost the battery's voltage to 5V. Below is an example circuit and code:
// Example code to blink an LED using Arduino UNO powered by an 18650 battery
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 Drains Quickly:
Battery Overheats:
Battery Voltage Drops Rapidly:
Q: Can I use an 18650 battery without a protection circuit?
A: It is not recommended. A protection circuit prevents overcharging, over-discharging, and short circuits, which can damage the battery or cause safety hazards.
Q: How do I know if my 18650 battery is fully charged?
A: A fully charged 18650 battery will have a voltage of approximately 4.2V. Use a multimeter to check the voltage.
Q: Can I connect multiple 18650 batteries together?
A: Yes, but ensure all batteries have the same capacity, voltage, and charge level. Use a Battery Management System (BMS) to balance the cells and ensure safe operation.
Q: How long does an 18650 battery last?
A: The lifespan depends on usage and care. Typically, an 18650 battery lasts for 300-500 charge cycles under normal conditions.