The 2S LiPO Battery 2200mAh (35C), manufactured by OVONIC (Part ID: OVONIC Air), is a high-performance lithium polymer battery designed for demanding applications. With a nominal voltage of 7.4V, a capacity of 2200mAh, and a discharge rate of 35C, this battery is ideal for powering remote-controlled (RC) vehicles, drones, and other high-drain devices. Its lightweight and compact design make it a popular choice for hobbyists and professionals alike.
Below are the key technical details of the 2S LiPO Battery 2200mAh (35C):
Parameter | Specification |
---|---|
Manufacturer | OVONIC |
Part ID | OVONIC Air |
Battery Type | Lithium Polymer (LiPO) |
Nominal Voltage | 7.4V (2S configuration) |
Capacity | 2200mAh |
Discharge Rate | 35C (77A continuous discharge) |
Maximum Burst Rate | 70C (154A burst discharge) |
Dimensions | 106mm x 34mm x 17mm |
Weight | ~120g |
Connector Type | XT60 (main power) |
Balance Connector | JST-XH (2S balance lead) |
Operating Temperature | -20°C to 60°C |
Storage Temperature | 0°C to 45°C |
The battery has two connectors: the XT60 connector for power delivery and the JST-XH balance connector for charging and cell balancing. The pinout for the JST-XH connector is as follows:
Pin | Description |
---|---|
Pin 1 | Cell 1 negative (-) |
Pin 2 | Cell 1 positive (+) |
Pin 3 | Cell 2 positive (+) |
Connecting the Battery:
Charging the Battery:
Discharging the Battery:
If you are powering an Arduino UNO with this battery, you can use a voltage regulator (e.g., LM7805) to step down the 7.4V to 5V. Below is an example circuit and code:
// Example code to blink an LED using Arduino UNO powered by a 2S LiPO 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
}
Battery Not Charging:
Swollen Battery:
Device Shuts Down Prematurely:
Uneven Cell Voltages:
Q1: Can I use this battery for a 3S device?
A1: No, this is a 2S battery with a nominal voltage of 7.4V. Using it in a 3S (11.1V) device may result in insufficient power or damage.
Q2: How do I know when the battery is fully charged?
A2: A fully charged 2S LiPO battery will have a voltage of 8.4V (4.2V per cell). Most chargers will indicate when charging is complete.
Q3: What is the maximum safe discharge current?
A3: The maximum continuous discharge current is 77A (35C), and the maximum burst discharge current is 154A (70C).
Q4: Can I use this battery in cold weather?
A4: Yes, but performance may decrease in temperatures below -20°C. Pre-warm the battery for optimal performance.
By following these guidelines, you can safely and effectively use the 2S LiPO Battery 2200mAh (35C) in your projects.