

The MakerHawk Rechargeable LiPo Battery is a lightweight and high-capacity lithium polymer (LiPo) battery with a nominal voltage of 3.7V and a capacity of 2200 mAh. This battery is widely used in portable electronics, remote-controlled (RC) devices, IoT projects, and other applications requiring a compact, rechargeable power source. Its high energy density and stable discharge characteristics make it an excellent choice for powering small to medium-sized electronic devices.








| Parameter | Value |
|---|---|
| Manufacturer | MakerHawk |
| Part ID | Rechargeable LiPo Battery |
| Nominal Voltage | 3.7V |
| Capacity | 2200 mAh |
| Maximum Discharge Current | 2C (4.4A) |
| Charging Voltage | 4.2V (max) |
| Charging Current | 0.5C (1.1A recommended) |
| Connector Type | JST-XH 2-pin |
| Dimensions | 60mm x 34mm x 8mm |
| Weight | ~45g |
The battery is equipped with a JST-XH 2-pin connector. Below is the pinout description:
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | Positive (+) | Connects to the positive terminal of the circuit |
| 2 | Negative (-) | Connects to the ground (GND) of the circuit |
Connection:
Charging:
Discharge:
Mounting:
Below is an example of connecting the 3.7V LiPo battery to an Arduino UNO using a step-up converter to provide 5V:
// Example code to read battery voltage using an analog pin on Arduino UNO
// Assumes a voltage divider circuit is used to scale down the battery voltage
const int batteryPin = A0; // Analog pin connected to the voltage divider
const float voltageDividerRatio = 2.0; // Adjust based on your resistor values
const float referenceVoltage = 5.0; // Arduino UNO's reference voltage
void setup() {
Serial.begin(9600); // Initialize serial communication
}
void loop() {
int rawValue = analogRead(batteryPin); // Read the 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
}
| Issue | Possible Cause | Solution |
|---|---|---|
| Battery not charging | Faulty charger or incorrect settings | Verify charger settings and connections |
| Battery overheating during use | Exceeding maximum discharge current | Reduce load or use a higher-capacity battery |
| Low runtime | Over-discharge or aging battery | Avoid over-discharging; replace if needed |
| Arduino resets unexpectedly | Insufficient voltage or current supply | Use a step-up converter or larger battery |
Can I use this battery directly with a 5V device?
How do I know when the battery is fully charged?
What happens if I over-discharge the battery?
Can I connect multiple batteries in series or parallel?
By following these guidelines, you can safely and effectively use the MakerHawk 3.7V LiPo 2200 mAh battery in your projects.