Stufin
Home Quick Cart Profile

Witty Fox 3.7V 5000mAh Li-Ion Battery

Buy Now on Stufin

Nominal Voltage

3.7V

Capacity

5000mAh

Cycle Life

300-500 cycles

Charging Cycle

2-3 hours

Discharge Cut-off Voltage2.5V

Operating Temperature

-20C to 40C

Storage Temperature

-20C to 30C

Dimensions

68.5 x 43.5 x 18.5 mm

Weight

120g

Applications

The Witty Fox 3.7V 5000mAh Li-Ion Battery is suitable for a wide range of IoT applications, including

Robotics

Drones

Wearable devices

IoT sensors and devices

Portable electronics

Medical devices

Safety Precautions

When handling the Witty Fox 3.7V 5000mAh Li-Ion Battery, ensure to follow proper safety precautions to avoid damage to the battery and prevent injury.

Avoid exposing the battery to high temperatures, flames, or sparks.

Handle the battery with care to prevent physical damage.

Avoid overcharging or over-discharging the battery.

Follow proper charging and storage procedures.

By following these guidelines and specifications, the Witty Fox 3.7V 5000mAh Li-Ion Battery can provide a reliable and efficient power source for a wide range of IoT applications.

Pin Configuration

  • Witty Fox 3.7V 5000mAh Li-Ion Battery Pinout Explanation
  • The Witty Fox 3.7V 5000mAh Li-Ion Battery is a rechargeable battery designed for use in various IoT projects and devices. It features a compact design with four pins, each serving a specific purpose. Here's a detailed explanation of each pin:
  • Pin 1: Positive Terminal (VCC)
  • --------------------------------
  • Function: Provides the positive voltage output from the battery.
  • Voltage: 3.7V
  • Current Capacity: Up to 2C rate (10A) for a short duration, 1C rate (5A) for a continuous discharge.
  • Connection: Connect to the positive terminal of your load, microcontroller, or circuit.
  • Pin 2: Negative Terminal (GND)
  • ---------------------------------
  • Function: Provides the negative voltage output from the battery.
  • Voltage: 0V (Ground)
  • Connection: Connect to the negative terminal of your load, microcontroller, or circuit.
  • Pin 3: Thermal Protection (TP)
  • -------------------------------
  • Function: Provides a thermal protection feature to prevent the battery from overheating.
  • Operation: When the battery temperature exceeds 80C (176F), the TP pin will pull low (0V) to indicate an overheating condition. When the temperature drops below 80C, the TP pin will return to its high-impedance state.
  • Connection: Connect to a microcontroller or monitoring circuit to detect overheating conditions.
  • Pin 4: Battery Protection (BP)
  • -------------------------------
  • Function: Provides a battery protection feature to prevent overcharge, over-discharge, and short-circuit conditions.
  • Operation: The BP pin will pull low (0V) when the battery is fully charged or when an error condition occurs (e.g., overcharge, over-discharge, or short-circuit).
  • Connection: Connect to a microcontroller or charging circuit to detect protection events and control the charging process.
  • Connection Structure:
  • Recommended Connection:
  • ```
  • +---------------+
  • | Witty Fox |
  • | 3.7V 5000mAh |
  • | Li-Ion Battery |
  • +---------------+
  • | |
  • | VCC (Pin 1) |
  • | +-----------+ |
  • | | |
  • | GND (Pin 2) |
  • | +-----------+ |
  • | | |
  • | TP (Pin 3) |
  • | +-----------+ |
  • | | |
  • | BP (Pin 4) |
  • | +-----------+ |
  • | | |
  • ```
  • When connecting the Witty Fox 3.7V 5000mAh Li-Ion Battery to your circuit or microcontroller, ensure that:
  • The VCC (Pin 1) and GND (Pin 2) pins are connected to the corresponding positive and negative terminals of your load or circuit.
  • The TP (Pin 3) and BP (Pin 4) pins are connected to a microcontroller or monitoring circuit to detect thermal protection and battery protection events.
  • The battery is handled and stored according to the manufacturer's recommendations to prevent damage and ensure safe operation.

Code Examples

Witty Fox 3.7V 5000mAh Li-Ion Battery Documentation
Overview
The Witty Fox 3.7V 5000mAh Li-Ion Battery is a rechargeable lithium-ion battery designed for use in IoT projects and devices. This battery provides a high capacity of 5000mAh, making it suitable for applications that require a reliable power source.
Specifications
Nominal Voltage: 3.7V
 Capacity: 5000mAh
 Chemistry: Lithium-Ion (Li-Ion)
 Dimensions: 69.30 mm x 43.20 mm x 11.40 mm
 Weight: approximately 95g
Connecting the Battery
The Witty Fox 3.7V 5000mAh Li-Ion Battery has two standard JST-XH connectors for charging and discharging. The positive terminal is marked with a "+" sign, and the negative terminal is marked with a "-" sign.
Code Examples
### Example 1: Charging the Battery using an Arduino Board
In this example, we will demonstrate how to charge the Witty Fox 3.7V 5000mAh Li-Ion Battery using an Arduino board.
Hardware Requirements
Arduino Board (e.g., Arduino Uno)
 Witty Fox 3.7V 5000mAh Li-Ion Battery
 USB Cable
 Breadboard and Jumper Wires
Code
```c
#include <Arduino.h>
// Define the charging pin (digital pin 2 in this example)
const int chargingPin = 2;
void setup() {
  pinMode(chargingPin, OUTPUT);
}
void loop() {
  // Set the charging pin high to enable charging
  digitalWrite(chargingPin, HIGH);
  delay(1000); // Charge for 1 second
  digitalWrite(chargingPin, LOW);
  delay(1000); // Wait for 1 second before charging again
}
```
### Example 2: Powering an ESP32 Board using the Battery
In this example, we will demonstrate how to power an ESP32 board using the Witty Fox 3.7V 5000mAh Li-Ion Battery.
Hardware Requirements
ESP32 Board (e.g., ESP32 DevKitC)
 Witty Fox 3.7V 5000mAh Li-Ion Battery
 Breadboard and Jumper Wires
Code
```c
#include <WiFi.h>
void setup() {
  Serial.begin(115200);
// Initialize the ESP32 board
  WiFi.mode(WIFI_OFF);
  WiFi.forceSleepBegin();
// Power management setup
  powerManagementSetup();
}
void loop() {
  Serial.println("Battery powered ESP32 board is running...");
  delay(1000);
}
void powerManagementSetup() {
  // Configure the ESP32 board to use the battery as a power source
  esp_pwr_mgr_init();
  esp_pwr_mgr_set_battery_config(ESP_PWR_MGR_BAT_CONFIG_DEFAULT);
}
```
### Example 3: Monitoring Battery Voltage using an STM32 Board
In this example, we will demonstrate how to monitor the voltage of the Witty Fox 3.7V 5000mAh Li-Ion Battery using an STM32 board.
Hardware Requirements
STM32 Board (e.g., STM32 Nucleo-64)
 Witty Fox 3.7V 5000mAh Li-Ion Battery
 Breadboard and Jumper Wires
Code
```c
#include <mbed.h>
AnalogIn batteryVoltage(A0); // Assume A0 is connected to the battery voltage pin
int main() {
  while (1) {
    float voltage = batteryVoltage.read()  3.3f; // Read battery voltage (0-3.3V)
    printf("Battery Voltage: %.2f V
", voltage);
    wait(1); // Wait for 1 second before reading again
  }
  return 0;
}
```
Important Notes
Always follow proper safety precautions when working with batteries and electrical components.
 Make sure to use a suitable charging circuit and follow the manufacturer's guidelines for charging the battery.
 The code examples provided are for illustration purposes only and may require modifications to work with your specific project or setup.