

The Fullsend 6S 10000mAh Li-Ion Battery, manufactured by iFlight (Part ID: 6S 10000mAh Li-Ion), is a high-capacity lithium-ion battery designed for demanding applications. With a 6-cell series configuration (6S) and a total capacity of 10000mAh, this battery is ideal for powering drones, RC vehicles, and other electronic devices that require substantial energy for extended periods. Its lightweight design and high energy density make it a popular choice for high-performance applications.








| Parameter | Value |
|---|---|
| Manufacturer | iFlight |
| Part ID | 6S 10000mAh Li-Ion |
| Nominal Voltage | 22.2V (6S configuration) |
| Capacity | 10000mAh |
| Maximum Discharge Rate | 15C |
| Maximum Continuous Current | 150A |
| Charging Voltage | 25.2V (max) |
| Recommended Charge Rate | 1C (10A) |
| Weight | ~1200g |
| Dimensions | 160mm x 65mm x 50mm |
| Connector Type | XT90 |
| Cell Chemistry | Lithium-Ion |
The Fullsend 6S 10000mAh Li-Ion Battery features the following connectors:
| Pin | Description |
|---|---|
| + | Positive terminal |
| - | Negative terminal |
| Pin | Description |
|---|---|
| 1 | Cell 1 positive |
| 2 | Cell 2 positive |
| 3 | Cell 3 positive |
| 4 | Cell 4 positive |
| 5 | Cell 5 positive |
| 6 | Cell 6 positive |
| 7 | Common ground |
While the Fullsend 6S 10000mAh Li-Ion Battery is not directly connected to an Arduino UNO, it can be used to power an Arduino-based project via a voltage regulator. Below is an example of using a 6S battery with a 5V voltage regulator to power an Arduino UNO:
/* Example: Powering Arduino UNO with a 6S Li-Ion Battery
This example demonstrates how to safely power an Arduino UNO using a 6S battery
and a voltage regulator to step down the voltage to 5V.
*/
#include <Arduino.h>
void setup() {
// Initialize serial communication for debugging
Serial.begin(9600);
Serial.println("Arduino powered by 6S Li-Ion Battery");
}
void loop() {
// Example loop code
Serial.println("Running...");
delay(1000); // Wait for 1 second
}
Note: Use a DC-DC step-down converter (e.g., LM2596) to regulate the 22.2V from the battery to 5V for the Arduino UNO.
This concludes the documentation for the Fullsend 6S 10000mAh Li-Ion Battery. Always follow safety guidelines and manufacturer recommendations for best results.