

The MakerHawk 3.7V 4000mAh LiPo Battery Rechargeable 1S (Part ID: 124065) is a high-capacity lithium polymer battery designed for a wide range of rechargeable applications. With a nominal voltage of 3.7V and a capacity of 4000mAh, this battery is ideal for powering devices that require a reliable and lightweight energy source. Its compact design and high energy density make it suitable for drones, RC vehicles, portable electronics, and IoT devices.








| Parameter | Value |
|---|---|
| Manufacturer | MakerHawk |
| Part ID | 124065 |
| Battery Type | Lithium Polymer (LiPo) |
| Nominal Voltage | 3.7V |
| Capacity | 4000mAh |
| Configuration | 1S (Single Cell) |
| Maximum Discharge Rate | 1C (4A) |
| Charging Voltage | 4.2V (Maximum) |
| Charging Current | Recommended: 0.5C (2A) |
| Connector Type | JST-XH 2.54mm |
| Dimensions | 80mm x 50mm x 10mm |
| Weight | ~70g |
The battery is equipped with a JST-XH 2.54mm connector for easy integration into circuits. The pinout is as follows:
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | Positive (+) | Battery positive terminal |
| 2 | Negative (-) | Battery negative terminal |
To power an Arduino UNO with this battery, you can connect it to the Vin pin and GND pin via a voltage regulator (if necessary). Below is an example of Arduino code to monitor the battery voltage using an analog pin:
// Arduino code to monitor battery voltage
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's 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 battery voltage to Serial Monitor
Serial.print("Battery Voltage: ");
Serial.print(batteryVoltage);
Serial.println(" V");
delay(1000); // Wait 1 second before next reading
}
Note: Use a voltage divider circuit to scale down the battery voltage to a safe range for the Arduino's analog input (0-5V).
Battery Not Charging:
Battery Overheating:
Device Not Powering On:
Shortened Battery Life:
Q: Can I use this battery in series or parallel configurations?
Q: How long does it take to fully charge the battery?
Q: Is this battery safe for air travel?
Q: Can I use a solar panel to charge this battery?
This documentation provides all the necessary details to safely and effectively use the MakerHawk 3.7V 4000mAh LiPo Battery Rechargeable 1S in your projects. Always follow safety guidelines and manufacturer recommendations for optimal performance and longevity.