Stufin
Home Quick Cart Profile

Witty Fox 11.1V 2200mAh Li-Ion Battery

Buy Now on Stufin

Key Features

  • High Capacity: The Witty Fox 11.1V 2200mAh Li-Ion Battery has a high capacity of 2200mAh, providing an extended runtime for devices and reducing the need for frequent recharging.
  • Voltage: The battery operates at a nominal voltage of 11.1V, making it suitable for devices that require a stable and consistent power supply.
  • Lithium-Ion Technology: The battery utilizes advanced lithium-ion technology, which offers a high energy density, low self-discharge rate, and long cycle life.
  • Compact Design: The battery's compact design and lightweight construction make it ideal for use in IoT devices, robots, and other applications where space is limited.
  • Rechargeable: The battery is rechargeable, allowing it to be replenished with energy multiple times, reducing electronic waste, and promoting sustainability.
  • Safety Features: The battery is designed with built-in safety features, including overcharge protection, over-discharge protection, and short-circuit protection, ensuring safe and reliable operation.
  • Wide Operating Temperature: The battery is capable of operating in a wide temperature range of -20C to 45C, making it suitable for use in various environmental conditions.
  • Cycle Life: The battery has a long cycle life, with up to 500 charge/discharge cycles, ensuring a long-term reliable power supply.
  • Compatible Interfaces: The battery has multiple compatible interfaces, including JST and Molex, allowing for easy integration into various devices and applications.

Nominal Voltage

11.1V

Capacity

2200mAh

Charge/ Discharge CyclesUp to 500

Operating Temperature

-20C to 45C

Dimensions

54.5mm x 39.5mm x 19.5mm

Weight

135g

Chemistry

Lithium-Ion (Li-ion)

Applications

IoT Devices

Robotics

Drones

Remote Control Systems

Portable Electronics

Medical Devices

Industrial Automation

Overall, the Witty Fox 11.1V 2200mAh Li-Ion Battery is a reliable and efficient power source designed to meet the demands of various IoT devices and applications. Its high capacity, compact design, and long cycle life make it an ideal choice for developers, engineers, and hobbyists alike.

Pin Configuration

  • Witty Fox 11.1V 2200mAh Li-Ion Battery Pinout and Connection Guide
  • The Witty Fox 11.1V 2200mAh Li-Ion Battery is a rechargeable battery designed for use in various IoT applications. The battery has a protection circuit module (PCM) built-in, which prevents overcharge, over-discharge, and short-circuit. The pinout of the battery is as follows:
  • Pinout:
  • 1. Positive Terminal (VCC/B+):
  • Pin Name: VCC/B+
  • Function: Positive terminal of the battery, providing power to the load.
  • Connection: Connect to the positive input of your device or circuit.
  • 2. Negative Terminal (GND/B-):
  • Pin Name: GND/B-
  • Function: Negative terminal of the battery, providing ground to the load.
  • Connection: Connect to the negative input of your device or circuit.
  • 3. Charge Indicator (CHG):
  • Pin Name: CHG
  • Function: Indicates the charging status of the battery.
  • Connection: Connect to a LED or a buzzer to indicate charging status.
  • Notes:
  • + CHG pin is high (3.3V) when the battery is charging.
  • + CHG pin is low (0V) when the battery is fully charged or not charging.
  • 4. Temperature Sense (TS):
  • Pin Name: TS
  • Function: Provides temperature data to the charging circuit for optimal charging.
  • Connection: Not typically connected to the user circuitry, but can be used for temperature monitoring.
  • 5. Protection Circuit Module (PCM) Input (IN):
  • Pin Name: IN
  • Function: Input to the PCM, which monitors the battery voltage and temperature.
  • Connection: Not typically connected to the user circuitry, but can be used for voltage monitoring.
  • Connection Structure:
  • When connecting the Witty Fox 11.1V 2200mAh Li-Ion Battery to your device or circuit, follow this structure:
  • 1. Connect the Positive Terminal (VCC/B+) to the positive input of your device or circuit.
  • 2. Connect the Negative Terminal (GND/B-) to the negative input of your device or circuit.
  • 3. Connect the Charge Indicator (CHG) to a LED or a buzzer to indicate charging status (optional).
  • 4. Do not connect the Temperature Sense (TS) pin to your circuitry, unless you need to monitor the battery temperature.
  • 5. Do not connect the Protection Circuit Module (PCM) Input (IN) pin to your circuitry, unless you need to monitor the battery voltage.
  • Important Notes:
  • Always ensure the battery is charged correctly, using a suitable charger, to prevent damage or explosion.
  • Avoid short-circuiting the battery terminals, as it may cause damage or fire.
  • Use protection diodes or fuses in your circuit to prevent backflow of power to the battery.
  • By following this guide, you can safely and effectively connect the Witty Fox 11.1V 2200mAh Li-Ion Battery to your IoT device or circuit.

Code Examples

Witty Fox 11.1V 2200mAh Li-Ion Battery Documentation
Overview
The Witty Fox 11.1V 2200mAh Li-Ion Battery is a high-performance rechargeable battery designed for various IoT applications. With its compact size and high energy density, this battery is ideal for powering devices that require a reliable and efficient power source.
Technical Specifications
Nominal Voltage: 11.1V
 Capacity: 2200mAh
 Cycle Life: >500 cycles
 Charging Method: CC/CV (Constant Current/Constant Voltage)
 Charging Current: 1C (2.2A)
 Discharge Current: 2C (4.4A)
 Operating Temperature: -20C to 45C
 Storage Temperature: -20C to 35C
Connecting the Battery
To use the Witty Fox 11.1V 2200mAh Li-Ion Battery, you need to connect it to your device or circuit. The battery has a standard JST-XH connector with a 2-pin interface:
Pin 1: Positive Terminal (+)
 Pin 2: Negative Terminal (-)
Code Examples
Here are a few code examples that demonstrate how to use the Witty Fox 11.1V 2200mAh Li-Ion Battery in various contexts:
### Example 1: Arduino Battery Monitoring
In this example, we'll use an Arduino board to monitor the battery voltage and capacity.
```c
const int batteryPin = A0;  // Analog input pin for battery voltage measurement
void setup() {
  Serial.begin(9600);
}
void loop() {
  int sensorValue = analogRead(batteryPin);
  float voltage = sensorValue  (11.1 / 1023.0);
  float capacity = (voltage / 11.1)  2200;
  Serial.print("Battery Voltage: ");
  Serial.print(voltage);
  Serial.println("V");
  Serial.print("Battery Capacity: ");
  Serial.print(capacity);
  Serial.println("mAh");
  delay(1000);
}
```
### Example 2: ESP32 Low Power Application
In this example, we'll use an ESP32 board to demonstrate a low-power application that consumes minimal power when not in use.
```c
#include <WiFi.h>
const int batteryPin = 32;  // GPIO pin for battery monitoring
WiFiClient client;
void setup() {
  Serial.begin(115200);
  WiFi.mode(WIFI_OFF);
}
void loop() {
  int sensorValue = analogRead(batteryPin);
  float voltage = sensorValue  (11.1 / 4095.0);
  if (voltage > 10.5) {
    // Perform tasks that require Wi-Fi connection
    WiFi.mode(WIFI_STA);
    client.setServer("example.com", 80);
    client.println("GET / HTTP/1.1");
    client.println("Host: example.com");
    client.println("Connection: close");
    client.println();
  } else {
    // Enter low-power mode to conserve battery life
    WiFi.mode(WIFI_OFF);
    esp_sleep_enable_timer_wakeup(30  60  1000000);  // Wake up every 30 minutes
    esp_light_sleep_start();
  }
  delay(1000);
}
```
### Example 3: Raspberry Pi Power Management
In this example, we'll use a Raspberry Pi to demonstrate power management techniques using the Witty Fox 11.1V 2200mAh Li-Ion Battery.
```python
import time
import RPi.GPIO as GPIO
GPIO.setmode(GPIO.BCM)
GPIO.setup(17, GPIO.IN, pull_up_down=GPIO.PUD_UP)  # GPIO 17 for battery monitoring
while True:
    voltage = GPIO.input(17)
    if voltage > 10.5:
        # Perform tasks that require high power
        print("High power mode")
    else:
        # Enter low-power mode to conserve battery life
        print("Low power mode")
        time.sleep(30  60)  # Sleep for 30 minutes
```
These examples demonstrate how to use the Witty Fox 11.1V 2200mAh Li-Ion Battery in various IoT applications. By properly connecting the battery and implementing power management techniques, you can ensure reliable and efficient operation of your devices.