









| Pin Name | Description |
|---|---|
| Positive | Positive terminal (+11.1V) |
| Negative | Negative terminal (Ground) |
| Pin Number | Description |
|---|---|
| 1 | Negative terminal of Cell 1 |
| 2 | Positive terminal of Cell 1 |
| 3 | Positive terminal of Cell 2 |
| 4 | Positive terminal of Cell 3 |
Charging the Battery:
Connecting to a Circuit:
Important Considerations:
Using with Arduino UNO:
Example Arduino code to monitor battery voltage:
const int batteryPin = A0; // Analog pin connected to battery voltage divider
const float voltageDividerRatio = 11.0; // Adjust based on resistor values used
const float referenceVoltage = 5.0; // Arduino reference voltage (5V for UNO)
void setup() {
Serial.begin(9600); // Initialize serial communication
}
void loop() {
int rawValue = analogRead(batteryPin); // Read analog value
float batteryVoltage = (rawValue / 1023.0) * referenceVoltage * voltageDividerRatio;
// Print the battery voltage to the Serial Monitor
Serial.print("Battery Voltage: ");
Serial.print(batteryVoltage);
Serial.println(" V");
delay(1000); // Wait for 1 second before the next reading
}
Battery Not Charging:
Battery Swelling:
Device Shuts Down Prematurely:
Uneven Cell Voltages:
Can I use a 3S LiPo battery with a 12V device?
How do I safely dispose of a damaged LiPo battery?
What is the maximum safe discharge rate for my battery?
How long can I store a LiPo battery?