githubDante

Results 23 comments of githubDante

I can confirm that it works with DEYE > Invertrer: SUN-12K-SG04LP3 > Datalogger: LSW-3 > I'm already working on a [library/tools](https://github.com/githubDante/deye-controller) for these inverters

@gavrik `print(modbus.read_holding_registers(1476, 1))` - 1476 is not a valid address for Deye. What you receive in the response is an exception code 0x05 which indeed is not a valid Modbus...

Hi, Are you sure that the registers in the range 10-16 are readable. Anyway, check your documentation for error 167, this is the number returned in both cases: ``` 2024-04-11...

It appears that the values are calculated from Voltage * Current for the respective string. There are no register definitions for them.

Hi, Looking at the traceback it fails on reading the system clock, which means that the register layout of this inverter is completely different. If you find the modbus documentation,...

Hi, Thanks for the documentation . Will try to adapt it to the current codebase.

Hi, Basic support for single phase Hybrid/Micro/String inverters has been added in the [single-phase branch](https://github.com/githubDante/deye-controller/tree/single-phase). `deye-reader` has auto detection now. The registers list is still incomplete though.

Hi, > By any chance, have you came across the register numbers for this two parameters? See for changes in register 242.

Hi, If I understand correctly register 242 controls the Grid/Gen signal options by changing the least significant bits: ``` 0b0000000000000001 - 0x0001 - Grid signal enabled 0b0000000000000010 - 0x0002 -...

Hi @europer, Sorry for the late resonse. Directly on your questions: - 1 & 2 - The inverters are controlled through an OrangePi running on Raspbian - 3 - Don't...