Stufin
Home Quick Cart Profile

Witty Fox 3.7V 10000mAh Li-Ion Battery

Buy Now

Nominal Voltage

3.7V

Capacity

10000mAh

Charging Voltage

4.2V 0.05V

Charging Current

2A

Discharge Current

5A (max)

Cycle Life

500 cycles

Operating Temperature Range

-20C to 45C

Storage Temperature Range

-20C to 35C

Dimensions

73mm x 52mm x 14mm

Weight

approximately 200g

Applications

The Witty Fox 3.7V 10000mAh Li-Ion Battery is suitable for use in various IoT applications, including

Robots and robotic systems

Drones and UAVs

Wireless devices and sensors

IoT gateways and hubs

Wearable devices and fitness trackers

Portable electronics and handheld devices

Safety Precautions

Handle the battery with care to avoid physical damage.

Avoid short-circuiting the battery terminals.

Follow proper charging and discharging procedures.

Store the battery in a cool, dry place away from children and pets.

Warranty and Support

The Witty Fox 3.7V 10000mAh Li-Ion Battery comes with a 1-year limited warranty. For technical support, please contact our customer service team at [support@wittyfox.com](mailtosupport@wittyfox.com).

Pin Configuration

  • Witty Fox 3.7V 10000mAh Li-Ion Battery Pinout Documentation
  • The Witty Fox 3.7V 10000mAh Li-Ion Battery is a compact and high-capacity power source designed for various IoT and electronics applications. This documentation provides a detailed explanation of the battery's pinout and how to connect them correctly.
  • Pinout Structure:
  • The Witty Fox battery has 4 pins, each with a specific function. The pinout structure is as follows:
  • Pin 1: Positive Terminal (VCC)
  • Function: Provides the positive voltage output of the battery (3.7V)
  • Connection: Connect to the positive terminal of your device or circuit
  • Caution: Ensure proper polarity to avoid damage to the battery or connected devices
  • Pin 2: Negative Terminal (GND)
  • Function: Provides the negative voltage output of the battery (0V)
  • Connection: Connect to the negative terminal of your device or circuit
  • Caution: Ensure proper polarity to avoid damage to the battery or connected devices
  • Pin 3: Battery Protection Circuit (BPC) Input
  • Function: Connects to the Battery Protection Circuit (BPC) module to monitor and control the battery's state of charge
  • Connection: Typically connects to the BPC module's input pin
  • Note: The BPC module is responsible for preventing overcharge, over-discharge, and short-circuit protection
  • Pin 4: Temperature Sensor (NTC) Output
  • Function: Provides an analog output signal indicating the battery's internal temperature
  • Connection: Connect to an Analog-to-Digital Converter (ADC) or a dedicated temperature monitoring circuit
  • Note: The NTC (Negative Temperature Coefficient) thermistor output can be used to monitor the battery's temperature and prevent overheating or overcooling
  • Connection Guidelines:
  • 1. Polarity Matters: Ensure correct polarity when connecting the battery to your device or circuit. Reverse polarity can damage the battery, connected devices, or both.
  • 2. Use Appropriate Connectors: Use suitable connectors, such as JST or Molex, to connect the battery to your device or circuit.
  • 3. Protect the Battery: Implement proper battery protection mechanisms, such as overcharge and over-discharge protection, to prolong the battery's lifespan.
  • 4. Monitor Temperature: Use the temperature sensor output to monitor the battery's internal temperature and prevent overheating or overcooling.
  • 5. Follow Safety Precautions: Handle the battery with care, avoiding short-circuits, punctures, or crushing, which can cause damage or fires.
  • By following these guidelines and understanding the pinout structure, you can safely and effectively integrate the Witty Fox 3.7V 10000mAh Li-Ion Battery into your IoT or electronics project.

Code Examples

Witty Fox 3.7V 10000mAh Li-Ion Battery
Overview
The Witty Fox 3.7V 10000mAh Li-Ion Battery is a high-capacity rechargeable battery designed for IoT and embedded system applications. This battery provides a reliable power source for devices that require a long battery life, making it an ideal choice for wireless sensor networks, IoT nodes, and portable devices.
Specifications
Nominal Voltage: 3.7V
 Capacity: 10000mAh
 Chemisty: Lithium-Ion (Li-Ion)
 Dimensions: 70mm x 50mm x 18mm
 Weight: 120g
 Cycle Life: 500 cycles
 Self-Discharge: 3% per month
Code Examples
### Example 1: Using the Witty Fox Battery with an Arduino Board
In this example, we will demonstrate how to use the Witty Fox 3.7V 10000mAh Li-Ion Battery to power an Arduino board. We will use the battery to power an Arduino Uno board and a DHT11 temperature and humidity sensor.
Hardware Requirements
Arduino Uno board
 Witty Fox 3.7V 10000mAh Li-Ion Battery
 DHT11 temperature and humidity sensor
 Jumper wires
Software Requirements
Arduino IDE
Code
```c
#include <DHT.h>
#define DHT_PIN 2 // Pin connected to DHT11 sensor
DHT dht(DHT_PIN, DHT11);
void setup() {
  Serial.begin(9600);
  dht.begin();
}
void loop() {
  int temperature = dht.readTemperature();
  int humidity = dht.readHumidity();
  Serial.print("Temperature: ");
  Serial.print(temperature);
  Serial.println(" C");
  Serial.print("Humidity: ");
  Serial.print(humidity);
  Serial.println(" %");
  delay(2000);
}
```
Connections
Connect the positive terminal of the Witty Fox battery to the VIN pin of the Arduino Uno board.
 Connect the negative terminal of the Witty Fox battery to the GND pin of the Arduino Uno board.
 Connect the DHT11 sensor to digital pin 2 of the Arduino Uno board.
### Example 2: Using the Witty Fox Battery with a Raspberry Pi Pico
In this example, we will demonstrate how to use the Witty Fox 3.7V 10000mAh Li-Ion Battery to power a Raspberry Pi Pico board. We will use the battery to power a simple LED blinking program.
Hardware Requirements
Raspberry Pi Pico board
 Witty Fox 3.7V 10000mAh Li-Ion Battery
 LED
 Resistor (1k)
 Jumper wires
Software Requirements
MicroPython
Code
```python
import machine
import time
led = machine.Pin(25, machine.Pin.OUT)
while True:
    led.value(1)
    time.sleep(0.5)
    led.value(0)
    time.sleep(0.5)
```
Connections
Connect the positive terminal of the Witty Fox battery to the VBUS pin of the Raspberry Pi Pico board.
 Connect the negative terminal of the Witty Fox battery to the GND pin of the Raspberry Pi Pico board.
 Connect the LED to Pin 25 of the Raspberry Pi Pico board through a 1k resistor.
Note: Make sure to adjust the pin numbers and connections according to your specific hardware setup.