The Samsung 18650 Li-ion Battery is a rechargeable lithium-ion cell widely used in portable electronics, power tools, and electric vehicles. Known for its high energy density, long cycle life, and reliability, this battery is a popular choice for applications requiring compact and efficient energy storage. When used in a configuration of two cells, the 18650 batteries can provide increased voltage or capacity, depending on the connection type (series or parallel).
Below are the key technical details for a single Samsung 18650 Li-ion battery. When using two batteries, the specifications will vary depending on the connection configuration.
Parameter | Value |
---|---|
Manufacturer | Samsung |
Part ID | 18650 |
Nominal Voltage | 3.7V |
Fully Charged Voltage | 4.2V |
Capacity | 2600mAh to 3500mAh (varies by model) |
Maximum Discharge Current | 10A to 30A (varies by model) |
Charging Voltage | 4.2V ± 0.05V |
Charging Current | Standard: 0.5C, Max: 1C |
Operating Temperature | Charge: 0°C to 45°C, Discharge: -20°C to 60°C |
Dimensions | 18mm (diameter) x 65mm (length) |
Weight | ~45g per cell |
The 18650 battery does not have traditional "pins" but instead features two terminals: a positive terminal and a negative terminal. Below is a description of these terminals.
Terminal | Description |
---|---|
Positive (+) | The top terminal, marked with a raised edge. |
Negative (-) | The flat bottom terminal. |
Below is an example of powering an Arduino UNO using two 18650 batteries in series (7.4V) with a voltage regulator.
// Example code to blink an LED connected to pin 13 of the Arduino UNO
// Ensure the Arduino is powered by the 18650 battery pack via a voltage regulator
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 Overheating
Uneven Discharge in Multiple Batteries
Battery Not Charging
Short Circuit
Can I use 18650 batteries without a BMS?
How do I know if my 18650 battery is fully charged?
Can I charge two 18650 batteries in parallel?
What is the lifespan of an 18650 battery?
By following these guidelines and best practices, you can safely and effectively use Samsung 18650 Li-ion batteries in your projects.