

The Deye SUN 8K-SG05LP1 is a high-efficiency solar inverter designed to convert direct current (DC) electricity generated by solar panels into alternating current (AC) electricity suitable for powering homes and businesses. This inverter features advanced Maximum Power Point Tracking (MPPT) technology, ensuring optimal energy harvesting from solar panels. Its compact design and robust performance make it an ideal choice for residential and commercial solar energy systems.








| Parameter | Specification |
|---|---|
| Manufacturer | Deye |
| Model | SUN 8K-SG05LP1 |
| Rated Power Output | 8,000 W (8 kW) |
| Input Voltage Range (DC) | 125 V - 580 V |
| Maximum DC Input Voltage | 600 V |
| MPPT Voltage Range | 150 V - 550 V |
| Number of MPPT Trackers | 2 |
| Maximum Input Current (DC) | 12.5 A per MPPT |
| Output Voltage (AC) | 230 V / 400 V (Three-phase) |
| Output Frequency | 50 Hz / 60 Hz |
| Efficiency | Up to 97.6% |
| Communication Interfaces | RS485, Wi-Fi, optional Ethernet |
| Operating Temperature Range | -25°C to 60°C |
| Dimensions | 457 mm × 515 mm × 180 mm |
| Weight | 20 kg |
| Protection Features | Overvoltage, short circuit, overheat |
The Deye SUN 8K-SG05LP1 features multiple input and output terminals for DC and AC connections, as well as communication ports. Below is a summary of the key connections:
| Pin Name | Description |
|---|---|
| PV+ (MPPT1) | Positive terminal for MPPT tracker 1 |
| PV- (MPPT1) | Negative terminal for MPPT tracker 1 |
| PV+ (MPPT2) | Positive terminal for MPPT tracker 2 |
| PV- (MPPT2) | Negative terminal for MPPT tracker 2 |
| Pin Name | Description |
|---|---|
| L1 | Line 1 (Phase 1) |
| L2 | Line 2 (Phase 2) |
| L3 | Line 3 (Phase 3) |
| N | Neutral |
| PE | Protective Earth |
| Port Name | Description |
|---|---|
| RS485 | For external monitoring and control |
| Wi-Fi Module | Wireless communication for monitoring |
| Ethernet (Opt) | Optional wired communication interface |
DC Input Connection:
AC Output Connection:
Communication Setup:
Power On:
While the Deye SUN 8K-SG05LP1 is not directly compatible with Arduino, it can be monitored using an Arduino-based system via the RS485 communication interface. Below is an example of Arduino code to read data from the inverter:
#include <ModbusMaster.h>
// Instantiate ModbusMaster object
ModbusMaster node;
void setup() {
Serial.begin(9600); // Initialize serial communication
node.begin(1, Serial); // Set Modbus slave ID to 1
}
void loop() {
uint8_t result;
uint16_t data[2];
// Read inverter status (example register address: 0x0001)
result = node.readHoldingRegisters(0x0001, 2);
if (result == node.ku8MBSuccess) {
data[0] = node.getResponseBuffer(0); // First register value
data[1] = node.getResponseBuffer(1); // Second register value
// Print the data to the serial monitor
Serial.print("Inverter Status: ");
Serial.print(data[0]);
Serial.print(", ");
Serial.println(data[1]);
} else {
Serial.println("Failed to read data from inverter.");
}
delay(1000); // Wait 1 second before the next read
}
Note: Replace the register address (
0x0001) with the appropriate address for the desired data. Consult the inverter's communication protocol documentation for details.
Inverter Not Powering On:
Low Efficiency:
Communication Failure:
Overheating:
By following this documentation, users can effectively install, operate, and maintain the Deye SUN 8K-SG05LP1 solar inverter for reliable and efficient energy conversion.