Cirkit Designer Logo
Cirkit Designer
Your all-in-one circuit design IDE
Home / 
Component Documentation

How to Use Deye Battery: Examples, Pinouts, and Specs

Image of Deye Battery
Cirkit Designer LogoDesign with Deye Battery in Cirkit Designer

Introduction

The Deye Battery is a rechargeable energy storage solution designed specifically for solar power systems. It provides a reliable power supply and ensures efficient energy management, making it an essential component for renewable energy setups. With its robust design and high energy density, the Deye Battery is ideal for residential, commercial, and industrial applications where energy storage and backup power are critical.

Explore Projects Built with Deye Battery

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
ESP32 Battery Voltage Monitor with OLED Display and Touch Sensor
Image of Battery Monitor: A project utilizing Deye Battery in a practical application
This circuit is a battery-powered system that monitors and displays the battery voltage on a 0.96" OLED screen using an ESP32 microcontroller. It includes a TP4056 for battery charging, an MT3608 for voltage boosting, and a touch sensor for user interaction.
Cirkit Designer LogoOpen Project in Cirkit Designer
Solar-Powered Battery Charging System with Voltage Display and Regulation
Image of rangkaian IoT : A project utilizing Deye Battery in a practical application
This is a solar-powered battery charging and power supply circuit with a battery management system for 18650 Li-ion batteries. It includes a voltage regulator for stable power delivery to fans, a visual power indicator LED with a current-limiting resistor, and a voltmeter to monitor battery voltage. A rocker switch controls the fans, and diodes are used to prevent reverse current flow.
Cirkit Designer LogoOpen Project in Cirkit Designer
Battery-Powered DC Motor Control with LED Indicator
Image of alternator: A project utilizing Deye Battery in a practical application
This circuit consists of a DC motor powered by a 12V battery, with a diode for protection against reverse voltage and an LED indicator. The LED is connected in parallel with the motor to indicate when the motor is powered.
Cirkit Designer LogoOpen Project in Cirkit Designer
Battery-Powered Directional Control for 12V Geared Motors
Image of Wired_Remote_car: A project utilizing Deye Battery in a practical application
This circuit consists of four 12V geared motors and two directional switches, all powered by a single 18650 Li-Ion battery. The directional switches are used to control the polarity of the voltage applied to the motors, allowing for the reversal of motor direction. The battery's negative terminal is connected to one terminal of each motor, while its positive terminal is connected to the input of both directional switches, which then selectively power the other terminals of the motors.
Cirkit Designer LogoOpen Project in Cirkit Designer

Explore Projects Built with Deye Battery

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
Image of Battery Monitor: A project utilizing Deye Battery in a practical application
ESP32 Battery Voltage Monitor with OLED Display and Touch Sensor
This circuit is a battery-powered system that monitors and displays the battery voltage on a 0.96" OLED screen using an ESP32 microcontroller. It includes a TP4056 for battery charging, an MT3608 for voltage boosting, and a touch sensor for user interaction.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of rangkaian IoT : A project utilizing Deye Battery in a practical application
Solar-Powered Battery Charging System with Voltage Display and Regulation
This is a solar-powered battery charging and power supply circuit with a battery management system for 18650 Li-ion batteries. It includes a voltage regulator for stable power delivery to fans, a visual power indicator LED with a current-limiting resistor, and a voltmeter to monitor battery voltage. A rocker switch controls the fans, and diodes are used to prevent reverse current flow.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of alternator: A project utilizing Deye Battery in a practical application
Battery-Powered DC Motor Control with LED Indicator
This circuit consists of a DC motor powered by a 12V battery, with a diode for protection against reverse voltage and an LED indicator. The LED is connected in parallel with the motor to indicate when the motor is powered.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of Wired_Remote_car: A project utilizing Deye Battery in a practical application
Battery-Powered Directional Control for 12V Geared Motors
This circuit consists of four 12V geared motors and two directional switches, all powered by a single 18650 Li-Ion battery. The directional switches are used to control the polarity of the voltage applied to the motors, allowing for the reversal of motor direction. The battery's negative terminal is connected to one terminal of each motor, while its positive terminal is connected to the input of both directional switches, which then selectively power the other terminals of the motors.
Cirkit Designer LogoOpen Project in Cirkit Designer

Common Applications and Use Cases

  • Solar energy storage for residential and commercial systems
  • Backup power supply during grid outages
  • Load balancing and peak shaving in energy management systems
  • Integration with hybrid inverters for off-grid and grid-tied systems

Technical Specifications

The Deye Battery is engineered to deliver high performance and durability. Below are its key technical specifications:

Parameter Specification
Battery Type Lithium Iron Phosphate (LiFePO4)
Nominal Voltage 48V
Nominal Capacity 100Ah
Energy Capacity 4.8 kWh
Maximum Charge Voltage 54.8V
Discharge Cut-off Voltage 42V
Maximum Charge Current 50A
Maximum Discharge Current 100A
Cycle Life >6000 cycles at 80% Depth of Discharge (DoD)
Operating Temperature -10°C to 50°C
Communication Interface RS485, CAN
Dimensions (L x W x H) 482mm x 450mm x 132mm
Weight ~45 kg

Pin Configuration and Descriptions

The Deye Battery features communication and power terminals for seamless integration with inverters and monitoring systems. Below is the pin configuration:

Power Terminals

Terminal Description
Positive (+) Connects to the inverter or load positive terminal
Negative (-) Connects to the inverter or load negative terminal

Communication Ports

Port Protocol Description
RS485 RS485 For communication with compatible inverters or monitoring systems
CAN CAN Bus For advanced communication and system integration

Usage Instructions

How to Use the Deye Battery in a Circuit

  1. Connection to Inverter:

    • Connect the positive (+) and negative (-) power terminals of the battery to the corresponding terminals on the inverter.
    • Ensure the connections are secure and use appropriately rated cables to handle the current.
  2. Communication Setup:

    • Use the RS485 or CAN communication ports to connect the battery to the inverter or monitoring system.
    • Configure the communication settings on the inverter to match the battery's protocol.
  3. Charging and Discharging:

    • The battery will automatically charge when connected to a solar inverter and solar panels.
    • During power outages or high energy demand, the battery will discharge to supply power.

Important Considerations and Best Practices

  • Depth of Discharge (DoD): To maximize the lifespan of the battery, avoid discharging below 80% DoD.
  • Temperature Range: Operate the battery within the specified temperature range (-10°C to 50°C) to prevent damage.
  • Ventilation: Install the battery in a well-ventilated area to avoid overheating.
  • Firmware Updates: Regularly check for firmware updates for the inverter to ensure compatibility with the battery.
  • Safety: Use a circuit breaker or fuse between the battery and inverter to protect against overcurrent.

Arduino UNO Integration Example

While the Deye Battery is not directly compatible with Arduino UNO for power supply, it can be monitored using the RS485 communication interface. Below is an example of how to read battery data using an RS485 module and Arduino UNO:

#include <SoftwareSerial.h>

// Define RS485 communication pins
#define RX_PIN 10  // Arduino RX pin connected to RS485 module TX
#define TX_PIN 11  // Arduino TX pin connected to RS485 module RX

SoftwareSerial rs485(RX_PIN, TX_PIN); // Initialize RS485 communication

void setup() {
  Serial.begin(9600); // Start serial communication for debugging
  rs485.begin(9600);  // Start RS485 communication at 9600 baud rate

  Serial.println("Deye Battery Monitoring Initialized");
}

void loop() {
  // Send a request to the battery (example command, adjust as needed)
  rs485.write(0x01); // Replace with actual command for battery data

  delay(100); // Wait for the response

  // Check if data is available from the battery
  if (rs485.available()) {
    Serial.print("Battery Data: ");
    while (rs485.available()) {
      byte data = rs485.read(); // Read data byte by byte
      Serial.print(data, HEX);  // Print data in hexadecimal format
      Serial.print(" ");
    }
    Serial.println();
  }

  delay(1000); // Wait before sending the next request
}

Troubleshooting and FAQs

Common Issues and Solutions

  1. Battery Not Charging:

    • Cause: Incorrect wiring or loose connections.
    • Solution: Verify the power terminal connections and ensure the inverter is configured correctly.
  2. Communication Failure:

    • Cause: Incorrect RS485 or CAN settings.
    • Solution: Check the communication protocol settings on the inverter and ensure they match the battery's specifications.
  3. Overheating:

    • Cause: Poor ventilation or operation outside the recommended temperature range.
    • Solution: Install the battery in a well-ventilated area and monitor the ambient temperature.
  4. Reduced Capacity:

    • Cause: Excessive depth of discharge or aging.
    • Solution: Limit the depth of discharge to 80% and monitor the cycle life.

FAQs

  • Q: Can the Deye Battery be used off-grid?

    • A: Yes, the battery is suitable for both off-grid and grid-tied systems when paired with a compatible inverter.
  • Q: How do I monitor the battery's performance?

    • A: Use the RS485 or CAN communication interface to connect the battery to a monitoring system or compatible inverter.
  • Q: What is the warranty period for the Deye Battery?

    • A: The warranty period varies by region and distributor. Check with your supplier for specific details.
  • Q: Can I connect multiple Deye Batteries in parallel?

    • A: Yes, the battery supports parallel connections for increased capacity. Follow the manufacturer's guidelines for proper configuration.

This documentation provides a comprehensive guide to understanding, using, and troubleshooting the Deye Battery. For further assistance, refer to the manufacturer's user manual or contact technical support.