

18650 lithium batteries, manufactured by Arduino (Part ID: Battery), are rechargeable lithium-ion cells widely used in portable electronics, electric vehicles, and DIY projects. These batteries are known for their high energy density, long cycle life, and reliable performance. Their cylindrical form factor and standardized size make them a popular choice for applications requiring compact and efficient energy storage.








Below are the key technical details for the Arduino 18650 lithium battery:
| Parameter | Specification |
|---|---|
| Nominal Voltage | 3.7V |
| Capacity Range | 2000mAh to 3500mAh (varies by model) |
| Maximum Charging Voltage | 4.2V |
| Discharge Cutoff Voltage | 2.5V |
| Maximum Discharge Current | 10A (varies by model) |
| Standard Charge Current | 0.5C (C = battery capacity in Ah) |
| Dimensions | 18mm (diameter) x 65mm (length) |
| Weight | ~45g |
| Chemistry | Lithium-ion (Li-ion) |
| Cycle Life | 300-500 cycles (depending on usage) |
18650 batteries typically have two terminals: positive (+) and negative (-). These terminals are used for charging and discharging the battery.
| Pin | Description |
|---|---|
| Positive (+) | Connects to the positive terminal of the circuit |
| Negative (-) | Connects to the ground or negative terminal of the circuit |
Note: Some 18650 batteries come with built-in protection circuits (protected cells) that prevent overcharging, over-discharging, and short circuits. These may have slightly different dimensions.
Below is an example of powering an Arduino UNO using a 18650 battery and a DC-DC step-up converter to regulate the voltage to 5V.
// Example code to blink an LED connected to pin 13 of the Arduino UNO
// This demonstrates the Arduino UNO powered by a 18650 battery
void setup() {
pinMode(13, OUTPUT); // Set pin 13 as an output pin
}
void loop() {
digitalWrite(13, HIGH); // Turn the LED on
delay(1000); // Wait for 1 second
digitalWrite(13, LOW); // Turn the LED off
delay(1000); // Wait for 1 second
}
Battery Not Charging:
Battery Drains Quickly:
Battery Overheats During Use:
Arduino UNO Not Powering On:
Q: Can I use 18650 batteries without a protection circuit?
A: While it is possible, it is not recommended. Using unprotected cells increases the risk of overcharging, over-discharging, and short circuits, which can damage the battery or cause safety hazards.
Q: How do I know when my 18650 battery is fully charged?
A: A fully charged 18650 battery will have a voltage of approximately 4.2V. Most chargers have an indicator light that turns green when charging is complete.
Q: Can I connect multiple 18650 batteries in series or parallel?
A: Yes, but ensure all batteries are of the same capacity, charge level, and type. Use a battery management system (BMS) to balance the cells and prevent overcharging or over-discharging.
Q: How long does an 18650 battery last?
A: The lifespan depends on usage and charging habits. Typically, an 18650 battery lasts for 300-500 charge cycles under normal conditions.