

The LIPO-110mAh is a lithium polymer (LiPo) battery with a capacity of 110mAh. It is widely used in small electronic devices, drones, wearable technology, and other portable applications due to its lightweight design and high energy density. This battery is ideal for projects requiring compact power sources with reliable performance.








Below are the key technical details of the LIPO-110mAh battery:
| Parameter | Value |
|---|---|
| Nominal Voltage | 3.7V |
| Capacity | 110mAh |
| Maximum Discharge Rate | 10C (1.1A) |
| Charging Voltage | 4.2V (maximum) |
| Charging Current | 0.5C (55mA recommended) |
| Dimensions | ~20mm x 15mm x 5mm |
| Weight | ~2 grams |
| Connector Type | JST-PH 2.0 (commonly used) |
| Protection Circuit | No (external protection required) |
The LIPO-110mAh battery typically comes with a JST-PH 2.0 connector. The pinout is as follows:
| Pin | Description |
|---|---|
| Red | Positive terminal (+) |
| Black | Negative terminal (-) |
To power an Arduino UNO with the LIPO-110mAh battery, you can use a step-up voltage regulator to boost the 3.7V to 5V. Below is an example of how to monitor the battery voltage using the Arduino's analog input:
// Example code to monitor LIPO-110mAh battery voltage using Arduino UNO
const int batteryPin = A0; // Analog pin connected to battery voltage divider
const float voltageDividerRatio = 2.0; // Adjust based on your resistor values
const float referenceVoltage = 5.0; // Arduino UNO's reference voltage (5V)
void setup() {
Serial.begin(9600); // Initialize serial communication
}
void loop() {
int rawValue = analogRead(batteryPin); // Read analog value from battery pin
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
}
Note: Use a voltage divider circuit to step down the battery voltage to a safe range (0-5V) for the Arduino's analog input. For example, use two resistors in series (e.g., 10kΩ and 10kΩ) to divide the voltage by half.
Battery Not Charging:
Battery Drains Quickly:
Battery Swells or Overheats:
Arduino Not Powering On:
Q: Can I use the LIPO-110mAh battery without a protection circuit?
A: It is not recommended. Use an external protection circuit to prevent overcharging, over-discharging, and short circuits.
Q: How long will the battery last on a single charge?
A: The runtime depends on the load current. For example, at a 50mA load, the battery will last approximately 2 hours (110mAh ÷ 50mA).
Q: Can I connect multiple LIPO-110mAh batteries in series or parallel?
A: Yes, but ensure proper balancing and use a BMS to manage the batteries safely.
Q: What is the recommended storage voltage?
A: Store the battery at ~3.8V for optimal longevity.
By following these guidelines, you can safely and effectively use the LIPO-110mAh battery in your projects.