

The Li-Po Battery 3S 11.1V (Manufacturer: Arduino, Part ID: UNO) is a lithium polymer battery consisting of three cells connected in series. It provides a nominal voltage of 11.1V and is widely recognized for its high energy density, lightweight design, and compact form factor. This battery is commonly used in applications requiring reliable and portable power, such as RC vehicles, drones, and portable electronics.








The following table outlines the key technical details of the Li-Po Battery 3S 11.1V:
| Parameter | Specification |
|---|---|
| Nominal Voltage | 11.1V (3.7V per cell, 3 cells in series) |
| Maximum Voltage | 12.6V (4.2V per cell, fully charged) |
| Minimum Voltage | 9.0V (3.0V per cell, discharged) |
| Capacity | Varies (e.g., 1000mAh, 2200mAh, etc.) |
| Discharge Rate (C-Rating) | Typically 20C to 50C |
| Connector Type | XT60, JST, or similar |
| Weight | Varies based on capacity |
| Dimensions | Varies based on capacity |
| Chemistry | Lithium Polymer (Li-Po) |
The Li-Po Battery 3S 11.1V typically includes two connectors: a main power connector and a balance connector. The pin configuration is as follows:
| Pin | Description |
|---|---|
| + | Positive terminal |
| - | Negative terminal |
| Pin | Description |
|---|---|
| 1 | Cell 1 positive terminal (3.7V) |
| 2 | Cell 2 positive terminal (7.4V) |
| 3 | Cell 3 positive terminal (11.1V) |
| 4 | Common ground (0V) |
Connect the Main Power Connector:
Balance Charging:
Voltage Monitoring:
Mounting:
The Li-Po Battery 3S 11.1V can be used to power an Arduino UNO via its VIN pin. Below is an example circuit and code to read the battery voltage using an analog pin:
// Define analog pin for voltage measurement
const int voltagePin = A0;
// Voltage divider resistor values (in ohms)
const float R1 = 10000.0; // Resistor connected to battery positive
const float R2 = 10000.0; // Resistor connected to ground
void setup() {
Serial.begin(9600); // Initialize serial communication
}
void loop() {
// Read the analog value from the voltage divider
int analogValue = analogRead(voltagePin);
// Convert the analog value to voltage
float voltage = (analogValue * 5.0 / 1023.0) * ((R1 + R2) / R2);
// Print the battery voltage to the Serial Monitor
Serial.print("Battery Voltage: ");
Serial.print(voltage);
Serial.println(" V");
delay(1000); // Wait for 1 second before the next reading
}
Battery Not Charging:
Battery Swelling:
Device Not Powering On:
Uneven Cell Voltages:
Q1: Can I use the Li-Po Battery 3S 11.1V with a 12V device?
A1: Yes, but ensure the device can handle the voltage range (9.0V to 12.6V). Use a voltage regulator if necessary.
Q2: How long does the battery last?
A2: Battery life depends on the capacity (mAh) and the load. For example, a 2200mAh battery can supply 2.2A for approximately 1 hour.
Q3: Is it safe to leave the battery connected to the charger?
A3: No, always disconnect the battery once charging is complete to prevent overcharging.
Q4: Can I use this battery in parallel with another Li-Po battery?
A4: Yes, but ensure both batteries have the same voltage and capacity. Use a parallel connector for safe operation.