StephanJoubert / home_assistant_solarman

Home Assistant component for Solarman collectors used with a variety of inverters.
Apache License 2.0
544 stars 198 forks source link

Microinverter VESDAS/DEYE SUN2000G3 (new config) #46

Closed chipsi closed 2 years ago

chipsi commented 2 years ago

Hello. I made a new YAML file for the new DEYE / VESDAS SUN2000G3 microinverter. It has 4x MPPT and 4x inverter. This is only the first version. Maybe it will help someone. Thank you to the author for a great job and other beautiful energy day. ChipSi007

.txt rename to .yaml deye_4mppt.txt

tcwed-br commented 2 years ago

Hello. I made a new YAML file for the new DEYE / VESDAS SUN2000G3 microinverter. It has 4x MPPT and 4x inverter. This is only the first version. Maybe it will help someone. Thank you to the author for a great job and other beautiful energy day. ChipSi007

.txt rename to .yaml deye_4mppt.txt

Hello Stephan / Chipsi great job 4pcs DeyeSun1600 now working in HA ... trying to figure out how to get the "radiator temperature" out of the box ... many thanks and keep on going

chipsi commented 2 years ago

Hello. I am trying it too, but it return zero. I'll let you know when I find it.

chipsi commented 2 years ago

I have got it. Add this

  - name: "Radiator temperature"
    class: "temperature"
    state_class: "measurement"
    uom: "°C"
    scale: 0.01
    rule: 1
    registers: [0x005A]
    icon: "mdi:thermometer"
wanderson-vicente commented 2 years ago

deye_4mppt.txt

Hello, I need help, I have the SUN2000G3, I installed the StephanJoubert integration, I copied the deye_4mppt.yaml file to the folder, but I can't connect to the microinverter. I have a question, when I access via browser I have to log in with username and password "admin, admin" in the integration I couldn't find a place to enter this information. Can you help me?

tcwed-br commented 2 years ago

Hello will need to copy 4mppt.yaml to the correct path and use the device serial number ( not inverter serial ) config.yaml platform: solarman
name: DEYExyz inverter_host: 192.168.xx.yy inverter_port: 8899
inverter_serial: 4041xxxxx inverter_mb_slaveid: 1
lookup_file: deye_4mppt.yaml ... ps radiator temperature works thanks chipsi

wanderson-vicente commented 2 years ago

Thanks! It worked!

StephanJoubert commented 2 years ago

Hi @chipsi. Thanks for the good work. I have pulled onto the main branch and it will be added to the next release of the component. Keep well!

alessandroo23 commented 2 years ago

Chipsi, Leonardolisboa, Tcwed-br, Thanks! It worked. data is now being collected.

VaillantHassIo commented 1 year ago

this works for Bosswerk MI600 ( OEM ) as well

giovanne123 commented 1 year ago

for at least Bosswerk MI600 you can also add for Daily/Total per Modul (example is for the 2 Mppt of the Bosswerk) to the deye_4mppt.txt Using it on my HA/Solarman intergration already


- name: "Daily Production PV1"
class: "energy"
state_class: "total"
uom: "kWh"
scale: 0.1
rule: 1
registers: [0x0041]
icon: 'mdi:solar-power'

- name: "Daily Production PV2"
class: "energy"
state_class: "total"
uom: "kWh"
scale: 0.1
rule: 1
registers: [0x0042]
icon: 'mdi:solar-power'

- name: "Total Production PV1"
class: "energy"
state_class: "total_increasing"
uom: "kWh"
scale: 0.1
rule: 3
registers: [0x0045,0x0046]
icon: 'mdi:solar-power'

- name: "Total Production PV2"
class: "energy"
state_class: "total_increasing"
uom: "kWh"
scale: 0.1
rule: 3
registers: [0x0047,0x0048]
icon: 'mdi:solar-power'