

The Battery 7.4V (Manufacturer: 18650, Part ID: 18650 Batteries with Holder Cover) is a rechargeable lithium-ion battery designed to deliver a nominal voltage of 7.4 volts. It is widely used in portable electronic devices, remote-controlled (RC) vehicles, robotics, and other applications requiring a reliable and efficient power source. Its compact size, high energy density, and rechargeable nature make it a popular choice for both hobbyists and professionals.








| Parameter | Value |
|---|---|
| Nominal Voltage | 7.4V |
| Battery Type | Lithium-Ion |
| Capacity | Typically 2000–3000mAh |
| Charging Voltage | 8.4V (maximum) |
| Discharge Cutoff Voltage | 6.0V |
| Maximum Discharge Current | 10A (varies by model) |
| Dimensions | ~18mm (diameter) x 65mm (length) |
| Weight | ~45g per cell |
| Operating Temperature | -20°C to 60°C |
| Cycle Life | ~500 charge/discharge cycles |
The battery typically comes with a holder or connector for easy integration into circuits. Below is the pin configuration for a standard 7.4V battery holder with two terminals:
| Pin Name | Description |
|---|---|
| Positive (+) | Positive terminal for power output |
| Negative (-) | Negative terminal (ground) |
Note: Ensure proper polarity when connecting the battery to avoid damage to the circuit or the battery.
The 7.4V battery can be used to power an Arduino UNO via the VIN pin. Below is an example of how to connect and use the battery:
// Example code to blink an LED using Arduino UNO powered by a 7.4V 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 battery voltage is within the acceptable range for the Arduino UNO (7–12V via VIN).
| Issue | Possible Cause | Solution |
|---|---|---|
| Battery not charging | Faulty charger or incorrect voltage | Use a compatible charger with 8.4V output |
| Battery drains quickly | Overloading or aging battery | Reduce load or replace the battery |
| Circuit not powering on | Incorrect polarity or loose connections | Verify polarity and secure connections |
| Battery overheating during use | Excessive current draw | Use a load within the battery's rating |
Can I use this battery to power a 5V device?
How do I know when the battery is fully charged?
What happens if I over-discharge the battery?
Can I connect multiple batteries in series or parallel?
By following these guidelines and best practices, you can safely and effectively use the 7.4V battery in your projects.