

The 2S 7.4V LiPo Battery (Manufacturer: HA, Part ID: 2S 7.4) is a 2-cell lithium polymer (LiPo) battery pack that delivers a nominal voltage of 7.4 volts. Known for its high energy density and lightweight design, this battery is widely used in applications requiring compact and efficient power sources. It is particularly popular in remote-controlled (RC) vehicles, drones, robotics, and portable electronic devices.








The following table outlines the key technical specifications of the 2S 7.4V LiPo Battery:
| Parameter | Specification |
|---|---|
| Nominal Voltage | 7.4V (2 cells in series) |
| Cell Configuration | 2S (2 cells in series) |
| Capacity | Varies (e.g., 1000mAh, 2200mAh, etc.) |
| Maximum Discharge Rate | Typically 20C to 50C (varies by model) |
| Charging Voltage | 8.4V (maximum) |
| Recommended Charge Rate | 1C (e.g., 2.2A for a 2200mAh battery) |
| Connector Type | XT60, JST, or other (varies by model) |
| Balancing Connector | JST-XH (standard for 2S LiPo packs) |
| Weight | Varies (e.g., ~100g for 2200mAh) |
| Dimensions | Varies (e.g., ~100mm x 35mm x 20mm) |
The 2S 7.4V LiPo Battery typically includes two connectors:
| Pin Number | Function | Description |
|---|---|---|
| 1 | Cell 1 Negative | Negative terminal of the first cell |
| 2 | Cell 1 Positive | Positive terminal of the first cell |
| 3 | Cell 2 Positive | Positive terminal of the second cell |
The 2S 7.4V LiPo Battery can power an Arduino UNO through its VIN pin. Below is an example circuit and code:
// Example code to read an analog sensor and print the value to the Serial Monitor
// Ensure the battery voltage is within the Arduino's operating range (7-12V).
const int sensorPin = A0; // Analog pin connected to the sensor
int sensorValue = 0; // Variable to store the sensor reading
void setup() {
Serial.begin(9600); // Initialize serial communication at 9600 baud
}
void loop() {
sensorValue = analogRead(sensorPin); // Read the sensor value
Serial.print("Sensor Value: ");
Serial.println(sensorValue); // Print the sensor value to the Serial Monitor
delay(1000); // Wait for 1 second before the next reading
}
Battery Not Charging
Battery Swelling or Puffing
Device Not Powering On
Uneven Cell Voltages
Q: Can I use the 2S 7.4V LiPo Battery with a 5V device?
A: Yes, but you will need a voltage regulator to step down the voltage to 5V.
Q: How do I know when the battery is fully charged?
A: A fully charged 2S LiPo battery will have a voltage of 8.4V (4.2V per cell).
Q: What happens if I over-discharge the battery?
A: Over-discharging can permanently damage the battery and reduce its capacity. Always use a low-voltage alarm or cutoff circuit to prevent this.
Q: Can I charge the battery without a balance charger?
A: It is not recommended. A balance charger ensures both cells are charged evenly, which is critical for safety and performance.
By following these guidelines, you can safely and effectively use the 2S 7.4V LiPo Battery in your projects.