

The Samsung 18650 Li-ion Battery is a rechargeable lithium-ion battery known for its high energy density, long cycle life, and reliability. This documentation covers the use of two 18650 batteries in series or parallel configurations, which is common in applications requiring higher voltage or capacity. These batteries are widely used in portable electronics, power tools, electric vehicles, and DIY projects.








Below are the key technical details for a single Samsung 18650 battery. When using two batteries, the specifications will vary depending on the configuration (series or parallel).
| Parameter | Value |
|---|---|
| Manufacturer | Samsung |
| Part ID | 18650 |
| Battery Type | Lithium-ion (Li-ion) |
| Nominal Voltage | 3.7V |
| Fully Charged Voltage | 4.2V |
| Capacity (Typical) | 2600mAh - 3500mAh (varies by model) |
| Discharge Cutoff Voltage | 2.5V |
| Maximum Discharge Current | 10A - 30A (varies by model) |
| Cycle Life | ~500-1000 cycles |
| Dimensions | 18mm (diameter) x 65mm (length) |
| Weight | ~45g per cell |
The 18650 battery has two terminals:
| Pin Name | Description |
|---|---|
| Positive (+) | Positive terminal of the battery |
| Negative (-) | Negative terminal of the battery |
| Configuration | Voltage Output | Capacity Output |
|---|---|---|
| Series (2S) | 7.4V (nominal) | Same as a single cell |
| Parallel (2P) | 3.7V (nominal) | Sum of both cell capacities |
To power an Arduino UNO with two 18650 batteries in series (7.4V nominal), you can use a DC-DC step-down converter to regulate the voltage to 5V.
// Example code to blink an LED using Arduino UNO powered by 18650 batteries
// Ensure the batteries are connected via a DC-DC converter to provide 5V.
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 Drains Quickly
Overheating During Use
Charger Not Working
Uneven Discharge in Parallel Configuration
Q: Can I use 18650 batteries without a BMS?
A: It is not recommended. A BMS ensures safe operation by preventing overcharging, over-discharging, and short circuits.
Q: How do I know if my 18650 battery is fully charged?
A: A fully charged 18650 battery will have a voltage of 4.2V. Use a multimeter to check the voltage.
Q: Can I solder directly to the battery terminals?
A: Direct soldering is not recommended as it can damage the battery. Use battery holders or spot welding for connections.
Q: How do I dispose of old 18650 batteries?
A: Dispose of them at a certified e-waste recycling facility. Do not throw them in regular trash.