

The 3S 2200 mAh lithium polymer (LiPo) battery is a high-performance power source designed for applications requiring lightweight, compact, and high-energy storage. With three cells connected in series, this battery provides a nominal voltage of 11.1V and a capacity of 2200 mAh, making it ideal for powering RC vehicles, drones, robotics, and other portable electronic devices. Its ability to deliver high discharge rates and recharge quickly makes it a popular choice for hobbyists and professionals alike.








Below are the key technical details of the 3S 2200 mAh battery:
| Parameter | Specification |
|---|---|
| Nominal Voltage | 11.1V (3.7V per cell) |
| Capacity | 2200 mAh |
| Configuration | 3 cells in series (3S) |
| Maximum Discharge Rate | Typically 20C to 30C |
| Maximum Charge Voltage | 12.6V (4.2V per cell) |
| Minimum Discharge Voltage | 9.0V (3.0V per cell) |
| Connector Type | XT60, JST, or similar |
| Weight | ~180g |
| Dimensions | ~105mm x 35mm x 25mm |
| Chemistry | Lithium Polymer (LiPo) |
The 3S 2200 mAh battery typically has two connectors:
| Pin | Balance Connector Description |
|---|---|
| Pin 1 | Negative terminal of Cell 1 |
| Pin 2 | Positive terminal of Cell 1 |
| Pin 3 | Positive terminal of Cell 2 |
| Pin 4 | Positive terminal of Cell 3 |
To power an Arduino UNO with the 3S 2200 mAh battery, you can use a voltage regulator module (e.g., LM2596) to step down the voltage to 5V. Below is an example circuit and code:
// Example code to blink an LED using Arduino UNO powered by a 3S 2200 mAh 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
}
By following this documentation, you can safely and effectively use the 3S 2200 mAh battery in your projects.