

The 2x 3.7V Battery Pack is a versatile power source consisting of two 3.7V lithium-ion cells. These cells can be connected in either series or parallel configurations, depending on the desired output. When connected in series, the pack provides a higher voltage of 7.4V, suitable for devices requiring more power. In parallel configuration, the pack delivers the same 3.7V output but with increased capacity, extending the runtime of your devices.
This battery pack is commonly used in portable electronics, robotics, RC vehicles, IoT devices, and DIY projects. Its compact size and rechargeable nature make it an ideal choice for applications requiring reliable and efficient power.








The battery pack typically has two terminals for connection:
| Pin Name | Description |
|---|---|
| Positive (+) | Positive terminal of the battery pack |
| Negative (-) | Negative terminal of the battery pack |
Some battery packs may include additional wires for balance charging or monitoring. These are typically labeled as follows:
| Pin Name | Description |
|---|---|
| B+ | Positive terminal of the first cell |
| B- | Negative terminal of the second cell |
| BM | Middle connection between the two cells (optional) |
To power an Arduino UNO with the 2x 3.7V Battery Pack:
You can use a voltage divider circuit to monitor the battery voltage with the Arduino UNO. Here's an example:
// Define the analog pin connected to the voltage divider
const int voltagePin = 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 sensorValue = analogRead(voltagePin); // Read the analog value
float voltage = sensorValue * (5.0 / 1023.0); // Convert to voltage
voltage = voltage * ((R1 + R2) / R2); // Adjust for voltage divider ratio
Serial.print("Battery Voltage: ");
Serial.print(voltage);
Serial.println(" V");
delay(1000); // Wait for 1 second before the next reading
}
Note: Ensure the voltage divider reduces the battery voltage to within the Arduino's ADC input range (0-5V).
Battery Pack Not Charging:
Short Runtime:
Overheating During Use:
Voltage Drop Under Load:
Q1: Can I use this battery pack to power a 5V device?
A1: Yes, but you will need a voltage regulator or DC-DC converter to step down the voltage to 5V.
Q2: How do I know if the battery pack is fully charged?
A2: A fully charged lithium-ion cell has a voltage of 4.2V. For a series configuration, the pack voltage will be 8.4V.
Q3: Can I connect more than two cells in this pack?
A3: Yes, you can connect additional cells in series or parallel, but ensure the charger and protection circuit are compatible with the new configuration.
Q4: Is it safe to use the battery pack without a protection circuit?
A4: It is not recommended. A protection circuit ensures safe operation by preventing overcharging, over-discharging, and short circuits.