

The 1S 3.7V LiPo 500mAh is a single-cell lithium polymer (LiPo) battery with a nominal voltage of 3.7 volts and a capacity of 500mAh. Known for its lightweight design and high energy density, this battery is widely used in portable electronic devices, drones, RC vehicles, and wearable technology. Its compact size and reliable performance make it an ideal power source for applications requiring a balance of energy efficiency and portability.








| Parameter | Value |
|---|---|
| Nominal Voltage | 3.7V |
| Capacity | 500mAh |
| Maximum Discharge Rate | Typically 20C (10A max) |
| Charging Voltage | 4.2V (maximum) |
| Minimum Discharge Voltage | 3.0V (do not over-discharge) |
| Chemistry | Lithium Polymer (LiPo) |
| Weight | ~12g |
| Dimensions | ~40mm x 20mm x 7mm |
| Connector Type | JST or Molex (varies by model) |
| Pin Name | Description |
|---|---|
| Positive (+) | Positive terminal for power output |
| Negative (-) | Negative terminal for power output |
| Balance Lead (optional) | Used for balanced charging (if present) |
To power an Arduino UNO with the 1S 3.7V LiPo 500mAh, you will need a DC-DC boost converter to step up the voltage to 5V. Below is an example circuit and code:
// Example code to blink an LED using Arduino UNO powered by a 1S 3.7V LiPo battery
// Ensure the battery is connected via a DC-DC boost converter to provide 5V to the Arduino
const int ledPin = 13; // Pin connected to the onboard LED
void setup() {
pinMode(ledPin, OUTPUT); // Set the LED pin as an output
}
void loop() {
digitalWrite(ledPin, HIGH); // Turn the LED on
delay(1000); // Wait for 1 second
digitalWrite(ledPin, LOW); // Turn the LED off
delay(1000); // Wait for 1 second
}
Battery Not Charging:
Battery Swelling:
Device Not Powering On:
Short Battery Life:
Q1: Can I use this battery to power a 5V device directly?
A1: No, the nominal voltage of this battery is 3.7V, which is insufficient for most 5V devices. Use a DC-DC boost converter to step up the voltage to 5V.
Q2: How long will the battery last on a single charge?
A2: The runtime depends on the load current. For example, if your device draws 250mA, the battery will last approximately 2 hours (500mAh ÷ 250mA).
Q3: Is it safe to leave the battery connected to the charger?
A3: No, always disconnect the battery once it is fully charged to prevent overcharging.
Q4: Can I use this battery in parallel with another 1S LiPo battery?
A4: Yes, but ensure both batteries have the same voltage and capacity, and use a proper balancing circuit.
This concludes the documentation for the 1S 3.7V LiPo 500mAh battery. Always follow safety guidelines and manufacturer recommendations for optimal performance and longevity.