

The 36V 10s2p 18650 Battery Pack w/ BMS is a rechargeable lithium-ion battery pack designed for high-performance applications. It consists of 20 individual 18650 cells arranged in a 10-series, 2-parallel configuration, providing a nominal voltage of 36V and a typical capacity of 4,000mAh to 6,000mAh (depending on the specific cells used). The integrated Battery Management System (BMS) ensures safe operation by protecting the cells from overcharging, over-discharging, and short circuits.








| Parameter | Specification |
|---|---|
| Nominal Voltage | 36V |
| Maximum Voltage | 42V |
| Minimum Voltage (Cutoff) | ~30V (varies by BMS settings) |
| Capacity | 4,000mAh to 6,000mAh (varies by cells) |
| Configuration | 10s2p (10 series, 2 parallel) |
| Maximum Continuous Current | 15A to 20A (depends on BMS rating) |
| Peak Current | 25A (short bursts) |
| Cell Chemistry | Lithium-ion (18650 cells) |
| BMS Features | Overcharge, over-discharge, short circuit, and thermal protection |
| Dimensions (Approx.) | 150mm x 70mm x 40mm |
| Weight | ~1.2kg |
The battery pack typically has three main connections: Positive (+), Negative (-), and a Charging Port. Some packs may also include additional wires for monitoring or communication.
| Pin Name | Description |
|---|---|
| Positive (+) | Main positive terminal for load and charging |
| Negative (-) | Main negative terminal for load and charging |
| Charging Port | Dedicated port for connecting a charger |
Note: Always verify the pinout with the specific battery pack you are using, as variations may exist.
Connecting the Battery Pack:
Charging the Battery Pack:
Discharging the Battery Pack:
The battery pack can power an Arduino UNO via its VIN pin. Below is an example of connecting the battery pack to an Arduino UNO and controlling an LED.
// Simple LED blink example for Arduino UNO powered by the 36V battery pack
// Ensure a voltage regulator is used to step down the voltage to 5V for the Arduino
void setup() {
pinMode(13, OUTPUT); // Set pin 13 as an output for the LED
}
void loop() {
digitalWrite(13, HIGH); // Turn the LED on
delay(1000); // Wait for 1 second
digitalWrite(13, LOW); // Turn the LED off
delay(1000); // Wait for 1 second
}
Warning: The Arduino UNO operates at 5V. Use a voltage regulator (e.g., LM7805) or a DC-DC step-down converter to safely step down the 36V battery pack voltage to 5V.
| Issue | Possible Cause | Solution |
|---|---|---|
| Battery pack not charging | Faulty charger or connection | Verify charger output and connections |
| Pack overheats during use | Load exceeds maximum current rating | Reduce load or use a higher-rated pack |
| Low runtime | Cells are degraded or not fully charged | Replace cells or ensure full charge |
| BMS cuts off power unexpectedly | Overcurrent or undervoltage protection | Check load current and battery voltage |
Can I replace individual cells in the pack?
What happens if I bypass the BMS?
Can I use this battery pack for solar energy storage?
How do I know when the battery is fully charged?
By following this documentation, you can safely and effectively use the 36V 10s2p 18650 Battery Pack w/ BMS in your projects.