

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. These batteries are widely used in portable electronics, power banks, flashlights, and electric vehicles due to their compact size and excellent performance.
When used in pairs, the 18650 batteries can provide higher voltage (in series) or increased capacity (in parallel), making them versatile for various applications.








Below are the key technical details for the Samsung 18650 Li-ion Battery:
| Specification | Value |
|---|---|
| Manufacturer | Samsung |
| Manufacturer Part ID | 18650 |
| Nominal Voltage (Single) | 3.6V |
| Nominal Capacity (Single) | 2600mAh to 3500mAh (varies by model) |
| Maximum Discharge Current | 10A to 30A (varies by model) |
| Charging Voltage | 4.2V |
| Charging Current | Standard: 0.5C, Max: 1C |
| Dimensions (Single) | 18mm (diameter) x 65mm (length) |
| Weight (Single) | ~45g |
| Chemistry | Lithium-ion (LiNiCoAlO2) |
| Cycle Life | ~500-1000 cycles |
| Operating Temperature | Charge: 0°C to 45°C, Discharge: -20°C to 60°C |
The 18650 battery does not have traditional pins but features two terminals:
| Terminal | Description |
|---|---|
| Positive (+) | The positive terminal of the battery |
| Negative (-) | The negative terminal of the battery |
When connecting two 18650 batteries, ensure proper polarity to avoid damage or hazards.
Determine Configuration:
Battery Holder:
Protection Circuit:
Charging:
Load Connection:
To power an Arduino UNO using two 18650 batteries in series (7.2V nominal), you can use a DC-DC step-down converter to regulate the voltage to 5V. Below is an example circuit and code:
// Example code to blink an LED connected to pin 13 on Arduino UNO
// Ensure the Arduino is powered via the 5V pin using the 18650 battery pack
void setup() {
pinMode(13, OUTPUT); // Set pin 13 as an output
}
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 Overheating:
Uneven Charging in Series:
No Output Voltage:
Arduino Not Powering On:
Can I use 18650 batteries without a BMS?
How do I know when the batteries are fully charged?
Can I mix different brands or capacities of 18650 batteries?
What is the maximum load I can connect to two 18650 batteries in parallel?
By following this documentation, you can safely and effectively use two Samsung 18650 Li-ion batteries in your projects.