

The 18650 in case is a cylindrical lithium-ion rechargeable battery housed in a protective casing. This component is widely used in portable electronics, power banks, flashlights, and electric vehicles due to its high energy density, long cycle life, and reliability. The protective case enhances safety by preventing physical damage and short circuits, making it suitable for DIY projects and professional applications.








| Parameter | Value |
|---|---|
| Battery Type | Lithium-Ion (Li-Ion) |
| Nominal Voltage | 3.7V |
| Fully Charged Voltage | 4.2V |
| Capacity Range | 2000mAh to 3500mAh (varies by model) |
| Discharge Current | 5A to 30A (depending on model) |
| Cycle Life | 300-500 cycles (typical) |
| Operating Temperature | -20°C to 60°C |
| Dimensions (with case) | ~18.6mm (diameter) x 70mm (length) |
| Weight (with case) | ~50g |
The 18650 in case typically has two terminals for electrical connections:
| Pin Name | Description | Notes |
|---|---|---|
| Positive (+) | Positive terminal of the battery | Connect to the positive side of the load or circuit. |
| Negative (-) | Negative terminal of the battery | Connect to the ground or negative side of the load. |
Some cases may include additional features such as:
Check the Voltage and Capacity:
Connect the Terminals:
Charging the Battery:
Safety Precautions:
The 18650 can be used to power an Arduino UNO via its VIN pin. Below is an example of connecting the battery to the Arduino and reading the battery voltage using an analog pin.
// Define analog pin for voltage measurement
const int voltagePin = A0;
// Voltage divider resistor values (in ohms)
const float R1 = 10000.0; // Resistor connected to battery positive
const float R2 = 10000.0; // Resistor connected to ground
void setup() {
Serial.begin(9600); // Initialize serial communication
}
void loop() {
int rawValue = analogRead(voltagePin); // Read analog value
float voltage = (rawValue / 1023.0) * 5.0; // Convert to voltage (Arduino 5V ADC)
// Adjust for voltage divider
float batteryVoltage = voltage * ((R1 + R2) / R2);
// Print the battery voltage to the Serial Monitor
Serial.print("Battery Voltage: ");
Serial.print(batteryVoltage);
Serial.println(" V");
delay(1000); // Wait 1 second before next reading
}
Battery Not Charging:
Battery Drains Quickly:
Overheating During Use:
No Output Voltage:
Q: Can I use the 18650 without a protective case?
A: It is not recommended. The case provides safety features such as short-circuit protection and physical damage prevention.
Q: How do I know when the battery is fully charged?
A: Most chargers have an indicator light that turns green when charging is complete. The battery voltage should read ~4.2V when fully charged.
Q: Can I connect multiple 18650 batteries together?
A: Yes, but ensure proper balancing and use a Battery Management System (BMS) to prevent overcharging or over-discharging.
Q: What is the shelf life of an 18650 battery?
A: When stored properly (at ~40% charge and in a cool, dry place), the shelf life is typically 2-3 years.
By following this documentation, you can safely and effectively use the 18650 in case for a variety of applications.