Hallo,
ich habe ein Balkonkraftwerk mit einem Deye WR SUN-M80G3-EU-Q0 und Relaisbox erhalten und aufgebaut.
Leider kann ich den WR nicht mit der Solarman Integration auslesen, da kommt immer "Solarman status_connection wechselte zu Disconnected" und keine Werte.
Scheint insgesamt ne wacklige Kiste zu sein.
Dann bin ich einer Anleitung gefolgt um die Werte direkt aus dem WR auszulesen:
Deye PV balcony power plant commissioning and HA integration
Mein Ergebnis in der configuration.yaml sieht so aus:
Code
command_line:
- sensor:
name: "power_balkon01_pv_now"
command: curl -s -u user:pass http://192.168.178.75/status.html | grep -E "\webdata_now_p(\s|$)" | cut -d'"' -f 2
unit_of_measurement: "W"
scan_interval: 30
- sensor:
name: "power_balkon01_pv_today"
command: curl -s -u user:pass http://192.168.178.75/status.html | grep -E "\webdata_today_e(\s|$)" | cut -d'"' -f 2
unit_of_measurement: "kWh"
scan_interval: 30
- sensor:
name: "power_balkon01_pv_total"
command: curl -s -u user:pass http://192.168.178.75/status.html | grep -E "\webdata_total_e(\s|$)" | cut -d'"' -f 2
unit_of_measurement: "kWh"
scan_interval: 30
Alles anzeigen
Leider werden die Werte aber nur ganz selten anzeigt / ausgelesen und stehen die meiste Zeit auf "unknown".
Was mache ich falsch?