

The 18650 battery is a rechargeable lithium-ion 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 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 Range | 1800mAh - 3500mAh | 
| Maximum Discharge Current | 5A - 35A (depending on the model) | 
| Chemistry | Lithium-ion (Li-ion) | 
| Cycle Life | 300 - 500 cycles (typical) | 
| Dimensions | 18mm (diameter) x 65mm (length) | 
| Weight | ~45g | 
The 18650 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. | 
Note: Some 18650 batteries come with built-in protection circuits (protected cells) to prevent overcharging, over-discharging, and short circuits. These may slightly increase the battery's length.
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
// Ensure the DC-DC converter is set to output 5V before connecting to Arduino
const int ledPin = 13; // Built-in LED pin on Arduino UNO
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:
Low Battery Life:
Voltage Drops Under Load:
Q: Can I use an 18650 battery without a protection circuit?
A: While it is possible, it is not recommended. Unprotected cells are more prone to overcharging, over-discharging, and short circuits, which can lead to safety hazards.
Q: How do I know if my 18650 battery is protected?
A: Protected cells are slightly longer (usually ~67mm) due to the built-in protection circuit. Check the manufacturer's specifications for confirmation.
Q: Can I connect multiple 18650 batteries in series or parallel?
A: Yes, you can connect them in series to increase voltage or in parallel to increase capacity. However, ensure all batteries are of the same type, capacity, and charge level. Use a BMS for safety.
Q: How long does an 18650 battery last?
A: The lifespan depends on usage and charging habits. Typically, an 18650 battery lasts 300-500 charge cycles under normal conditions.