

The 4 Pack 1S4P Battery is a configuration of four individual cells connected in parallel (4P) with a single series connection (1S). This arrangement increases the overall capacity of the battery while maintaining the same voltage as a single cell. It is commonly used in applications requiring extended runtime without increasing the voltage, such as portable electronics, power banks, and low-power IoT devices.








The following table outlines the key technical specifications of the 4 Pack 1S4P Battery:
| Parameter | Specification |
|---|---|
| Nominal Voltage | Same as a single cell (e.g., 3.7V for Li-ion) |
| Capacity | 4x the capacity of a single cell |
| Configuration | 1 Series, 4 Parallel (1S4P) |
| Maximum Discharge Current | Sum of the maximum discharge currents of all cells |
| Charging Voltage | Same as a single cell (e.g., 4.2V for Li-ion) |
| Charging Current | Typically 4x the single-cell charging current |
| Dimensions | Varies based on cell size and packaging |
| Weight | Approximately 4x the weight of a single cell |
The 4 Pack 1S4P Battery typically has two terminals for connection:
| Pin | Label | Description |
|---|---|---|
| 1 | + (Positive) | Positive terminal of the battery pack |
| 2 | - (Negative) | Negative terminal of the battery pack |
Some battery packs may include additional pins for features like temperature monitoring or balancing. Refer to the specific datasheet for details.
To power an Arduino UNO with a 1S4P battery pack:
Here is an example Arduino sketch to read a sensor while powered by the battery:
// Example code to read a sensor and print the value to the Serial Monitor
// Ensure the battery voltage is within the Arduino's operating range
const int sensorPin = A0; // Analog pin connected to the sensor
int sensorValue = 0; // Variable to store the sensor reading
void setup() {
Serial.begin(9600); // Initialize serial communication at 9600 baud
}
void loop() {
sensorValue = analogRead(sensorPin); // Read the sensor value
Serial.print("Sensor Value: ");
Serial.println(sensorValue); // Print the sensor value to the Serial Monitor
delay(1000); // Wait for 1 second before the next reading
}
Battery Not Charging:
Short Runtime:
Overheating:
Voltage Drop Under Load:
Can I use this battery pack without a BMS?
How do I calculate the total capacity of the battery pack?
What is the lifespan of a 1S4P battery pack?
Can I replace individual cells in the pack?
By following this documentation, you can safely and effectively use the 4 Pack 1S4P Battery in your projects.