Stufin
Home Quick Cart Profile

Witty Fox 11.1V 4000mAh Li-Ion Battery

Buy Now on Stufin

Nominal Voltage

11.1V

Capacity

4000mAh

Energy Density

144Wh/kg

Cycle Life

Up to 500 charge/discharge cycles

Dimensions

64mm x 43mm x 25mm (L x W x H)

Weight

approximately 220g

Charge/Discharge Cycles0.5C/0.5C

Typical Charge Time

4-5 hours

Recommended Maximum Continuous Discharge Current

2C (8A)

Safety Precautions

When handling the Witty Fox 11.1V 4000mAh Li-Ion Battery, please observe the following safety precautions

Avoid short-circuiting the battery terminals.

Do not crush, puncture, or incinerate the battery.

Keep the battery away from children and pets.

Use a charger specifically designed for lithium-ion batteries.

Monitor the battery's temperature during charging and discharging.

Warranty and Support

The Witty Fox 11.1V 4000mAh Li-Ion Battery comes with a limited one-year warranty. For technical support, please contact the manufacturer or authorized distributors.

Pin Configuration

  • Witty Fox 11.1V 4000mAh Li-Ion Battery Pinout Description
  • The Witty Fox 11.1V 4000mAh Li-Ion Battery is a rechargeable lithium-ion battery designed for IoT and robotics applications. It features a compact design and a high capacity of 4000mAh, making it an ideal choice for powering small to medium-sized devices. The battery has a built-in protection circuit to prevent overcharge, over-discharge, and short-circuit.
  • Pinout Description:
  • The Witty Fox 11.1V 4000mAh Li-Ion Battery has a total of 3 pins, each with a specific function. Below is a detailed description of each pin:
  • Pin 1: Positive Terminal (VCC)
  • Pin Function: Positive power supply terminal
  • Voltage: 11.1V (nominal)
  • Current: Up to 2C (8000mA) maximum discharge current
  • Connection: Connect to the positive terminal of your device or PCB
  • Pin 2: Negative Terminal (GND)
  • Pin Function: Negative power supply terminal
  • Voltage: 0V (ground)
  • Current: Up to 2C (8000mA) maximum discharge current
  • Connection: Connect to the negative terminal of your device or PCB
  • Pin 3: Battery Protection Circuit (BPC)
  • Pin Function: Communication pin for battery protection circuit
  • Voltage: 0V to 5V (TTL-level signal)
  • Current: Low current (typically <10mA)
  • Connection: Connect to a microcontroller or dedicated IC for battery protection and monitoring
  • Connection Structure:
  • To connect the Witty Fox 11.1V 4000mAh Li-Ion Battery to your device or PCB, follow the structure below:
  • Connect Pin 1 (VCC) to the positive power supply rail of your device or PCB
  • Connect Pin 2 (GND) to the negative power supply rail of your device or PCB
  • Connect Pin 3 (BPC) to a digital input pin of your microcontroller or dedicated IC, ensuring the voltage level is compatible (TTL-level signal)
  • Important Notes:
  • When connecting the battery, ensure the pins are properly aligned to avoid damage or short-circuit.
  • The battery protection circuit pin (Pin 3) is an optional connection, but it is highly recommended to connect it to a microcontroller or dedicated IC to monitor and control the battery's state of charge, voltage, and temperature.
  • Always follow proper safety precautions when handling lithium-ion batteries to avoid damage or personal injury.

Code Examples

Witty Fox 11.1V 4000mAh Li-Ion Battery Documentation
Overview
The Witty Fox 11.1V 4000mAh Li-Ion Battery is a high-capacity rechargeable battery designed for use in various IoT applications. This battery features a nominal voltage of 11.1V and a capacity of 4000mAh, making it suitable for powering devices that require a moderate to high power supply.
Specifications
Nominal Voltage: 11.1V
 Capacity: 4000mAh
 Chemistry: Lithium-Ion (Li-Ion)
 Dimensions: 68mm x 40mm x 22mm
 Weight: 120g
 Max Charge Current: 2A
 Max Discharge Current: 5A
Connecting the Battery
The Witty Fox 11.1V 4000mAh Li-Ion Battery has two terminals: positive (+) and negative (-). The positive terminal is marked with a "+" sign, and the negative terminal is marked with a "-" sign.
To connect the battery to your IoT device, you will need to connect the positive terminal to the positive power input of your device and the negative terminal to the negative power input of your device.
Code Examples
### Example 1: Arduino Uno Power Supply
In this example, we will demonstrate how to use the Witty Fox 11.1V 4000mAh Li-Ion Battery to power an Arduino Uno board.
```c++
#include <Arduino.h>
// Define the battery voltage and capacity
const float batteryVoltage = 11.1;
const int batteryCapacity = 4000;
void setup() {
  // Initialize the serial communication
  Serial.begin(9600);
  
  // Print the battery voltage and capacity
  Serial.print("Battery Voltage: ");
  Serial.print(batteryVoltage);
  Serial.println("V");
  Serial.print("Battery Capacity: ");
  Serial.print(batteryCapacity);
  Serial.println("mAh");
}
void loop() {
  // Read the battery voltage using the Arduino's analogRead function
  int sensorValue = analogRead(A0);
  float batteryVoltageReading = sensorValue  (batteryVoltage / 1023.0);
  
  // Print the battery voltage reading
  Serial.print("Battery Voltage Reading: ");
  Serial.print(batteryVoltageReading);
  Serial.println("V");
  
  // Wait for 1 second before taking the next reading
  delay(1000);
}
```
### Example 2: Raspberry Pi Power Supply with Python
In this example, we will demonstrate how to use the Witty Fox 11.1V 4000mAh Li-Ion Battery to power a Raspberry Pi using Python.
```python
import RPi.GPIO as GPIO
import time
# Define the battery voltage and capacity
battery_voltage = 11.1
battery_capacity = 4000
# Initialize the GPIO library
GPIO.setmode(GPIO.BCM)
# Define the GPIO pin for the battery voltage reading
GPIO.setup(17, GPIO.IN)
while True:
    # Read the battery voltage using the Raspberry Pi's GPIO library
    sensor_value = GPIO.input(17)
    battery_voltage_reading = sensor_value  (battery_voltage / 1023.0)
    
    # Print the battery voltage reading
    print("Battery Voltage Reading: {:.2f}V".format(battery_voltage_reading))
    
    # Wait for 1 second before taking the next reading
    time.sleep(1)
```
Safety Precautions
When handling the battery, avoid short-circuiting the terminals, as this can cause a fire or explosion.
 Keep the battery away from children and pets.
 Avoid overcharging or over-discharging the battery, as this can reduce its lifespan.
 Follow proper charging and discharging procedures to ensure safe and efficient operation.
By following these guidelines and code examples, you can effectively use the Witty Fox 11.1V 4000mAh Li-Ion Battery in your IoT projects.