

The 801350 LiPo 500mAh Battery is a compact lithium polymer battery designed for applications requiring lightweight and high energy density power sources. With a capacity of 500mAh, it is ideal for powering small electronic devices, drones, wearable technology, and portable gadgets. Its slim form factor and reliable performance make it a popular choice for projects where space and weight are critical considerations.








The following table outlines the key technical details of the 801350 LiPo 500mAh Battery:
| Parameter | Specification |
|---|---|
| Nominal Voltage | 3.7V |
| Capacity | 500mAh |
| Maximum Discharge Rate | 1C (500mA) |
| Charging Voltage | 4.2V ± 0.05V |
| Charging Current | Standard: 0.2C (100mA), Max: 0.5C (250mA) |
| Dimensions | 8mm (thickness) x 13mm (width) x 50mm (length) |
| Weight | ~12g |
| Connector Type | JST-PH 2.0 (commonly used) |
| Protection Circuit | Built-in overcharge and over-discharge protection |
The 801350 LiPo 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 801350 LiPo battery, you can use a DC-DC boost converter to step up the 3.7V to 5V. Below is an example circuit and code to read the battery voltage using the Arduino's analog input:
// Define the analog pin connected to the voltage divider
const int batteryPin = 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() {
int rawValue = analogRead(batteryPin); // Read the analog value
float voltage = (rawValue / 1023.0) * 5.0; // Convert to voltage (Arduino 5V ADC)
// Calculate the actual battery voltage using the voltage divider formula
float batteryVoltage = voltage * (R1 + R2) / R2;
// 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 Drains Quickly:
Battery Swells or Overheats:
Arduino Not Powering On:
Can I use this battery for high-current applications?
How long does it take to charge the battery?
Is the battery safe to use in outdoor environments?
Can I connect multiple batteries in series or parallel?
By following this documentation, you can safely and effectively use the 801350 LiPo 500mAh Battery in your projects.