

18650 batteries are cylindrical lithium-ion rechargeable batteries widely used in various applications due to their high energy density, long cycle life, and reliability. Manufactured by Arduino under the part ID "UNO," these batteries are ideal for powering portable electronics, electric vehicles, and energy storage systems. With a nominal voltage of 3.7V, they are a versatile power source for many electronic projects.








| Parameter | Value |
|---|---|
| Nominal Voltage | 3.7V |
| Capacity Range | 2000mAh to 3500mAh (varies by model) |
| Maximum Discharge Current | 10A to 30A (depending on model) |
| Charging Voltage | 4.2V |
| Charging Current | Typically 0.5C to 1C |
| Dimensions | 18mm (diameter) x 65mm (length) |
| Weight | ~45g |
| Chemistry | Lithium-ion |
| Cycle Life | 300-500 cycles (varies by usage) |
| Operating Temperature | -20°C to 60°C |
18650 batteries do not have traditional pins but instead feature two terminals:
| Terminal | Description |
|---|---|
| Positive (+) | The terminal where current flows out |
| Negative (-) | The terminal where current flows in |
Note: Ensure proper polarity when connecting the battery to avoid damage to the circuit or the battery.
To power an Arduino UNO with an 18650 battery, you can use a DC-DC step-up converter to boost the battery's 3.7V to 5V. Below is an example circuit and Arduino code:
// Example code to blink an LED using an Arduino UNO powered by an 18650 battery
const int ledPin = 13; // Pin connected to the onboard LED
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
}
Note: Ensure the step-up converter is properly configured to output 5V before connecting it to the Arduino UNO.
Battery Not Charging
Battery Drains Quickly
Battery Overheats
Arduino UNO Not Powering On
Q: Can I use an 18650 battery directly with the Arduino UNO?
A: No, the Arduino UNO requires a 5V input. Use a DC-DC step-up converter to boost the 18650 battery's 3.7V to 5V.
Q: How do I know when the battery is fully charged?
A: Most lithium-ion chargers have an indicator light that turns green when the battery is fully charged.
Q: Can I connect multiple 18650 batteries in parallel?
A: Yes, but ensure they are of the same capacity and charge level. Use a BMS designed for parallel configurations.
Q: Is it safe to solder directly onto an 18650 battery?
A: No, soldering directly onto the battery can damage it. Use battery holders or spot welding for connections.
By following these guidelines, you can safely and effectively use 18650 batteries in your projects.