

The Battery Li-Po 1100 mAh is a lightweight, high-energy-density lithium polymer rechargeable battery manufactured by Red. With a capacity of 1100 mAh, it is ideal for powering portable electronic devices, drones, RC vehicles, and embedded systems. Its compact size and reliable performance make it a popular choice for applications requiring efficient energy storage in a small form factor.








Below are the key technical details of the Battery Li-Po 1100 mAh:
| Parameter | Value |
|---|---|
| Nominal Voltage | 3.7 V |
| Capacity | 1100 mAh |
| Maximum Discharge Rate | 20C (22 A) |
| Charging Voltage | 4.2 V (maximum) |
| Charging Current | 0.5C (550 mA recommended) |
| Dimensions | 50 mm x 30 mm x 7 mm |
| Weight | ~25 g |
| Connector Type | JST-XH or custom (varies) |
| Protection Circuit | No (external protection required) |
The battery typically comes with a JST-XH connector, which has two pins:
| Pin | Name | Description |
|---|---|---|
| 1 | Positive (+) | Connects to the positive terminal of the circuit |
| 2 | Negative (-) | Connects to the ground or negative terminal |
Note: Always verify the connector type and pinout before connecting the battery to your circuit.
To power an Arduino UNO with the Li-Po battery, use a voltage regulator module (e.g., LM7805) to step down the 3.7 V to 5 V. Below is an example circuit and code:
// Example code to read battery voltage using Arduino UNO
// Assumes the battery is connected to an analog pin via a voltage divider
const int batteryPin = A0; // Analog pin connected to the voltage divider
const float voltageDividerRatio = 2.0; // Adjust based on your resistor values
const float referenceVoltage = 5.0; // Arduino's reference voltage (5V)
void setup() {
Serial.begin(9600); // Initialize serial communication
}
void loop() {
int rawValue = analogRead(batteryPin); // Read the analog value
float batteryVoltage = (rawValue / 1023.0) * referenceVoltage * voltageDividerRatio;
Serial.print("Battery Voltage: ");
Serial.print(batteryVoltage);
Serial.println(" V");
delay(1000); // Wait for 1 second before the next reading
}
Note: Use a voltage divider to scale down the battery voltage to a safe range for the Arduino's analog input (0–5 V).
Battery Not Charging
Battery Drains Quickly
Device Not Powering On
Battery Swells or Overheats
Can I use this battery for high-current applications? Yes, the battery supports a maximum discharge rate of 20C (22 A), making it suitable for high-current devices like drones and RC vehicles.
Do I need a protection circuit? Yes, since the battery lacks an internal protection circuit, an external BMS or protection module is essential.
How long does the battery last? The lifespan depends on usage and care. Typically, it can handle 300–500 charge cycles with proper maintenance.
Can I connect multiple batteries in series or parallel? Yes, but ensure you use a balancing circuit for series connections and match the capacities for parallel connections.
Warning: Always handle Li-Po batteries with care to prevent accidents or damage.