DSMR Reader home assistant ADDON #32905
Unanswered
eterpstra
asked this question in
Need help?
Replies: 2 comments 4 replies
|
should work. for some (here irrelevant) reasons, I'm using only energy readings from the DSMR. |
0 replies
|
Okay but how do i add this config via de Gui? @RenatusRo |
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Hi,
Since a few years, i am running the DSMR Reader Addon in home-assistant:
https://community.home-assistant.io/t/dsmr-reader-add-on-for-home-assistant/279087
DSMR Reader supports MQTT. All of my sensors are intergated in home-assistant via MQTT.
I was trying to add DSMR Reader to EVCC, but for some reaons, i am not receiving data. I created a new folder within this path:
/homeassistant/addons_config/49686a9f_evcc/evcc.yaml
Within this file, i created the following MQTT Data:
`# evcc.yaml
mqtt:
broker: 192.168.1.134:1883 # of het IP-adres van je MQTT broker
topic: evcc # root topic voor publicatie en ontvangst
user: xxxxxxx # optioneel
password: xxxxxx # optioneel
Meterkast P1
meters:
name: dsmr
type: custom
power:
source: calc
add:
- source: mqtt
topic: dsmr/reading/electricity_currently_delivered
scale: 1000 # bijvoorbeeld om kW naar W te converteren
- source: mqtt
topic: dsmr/reading/electricity_currently_returned
scale: -1000 # bijvoorbeeld om kW naar W te converteren
timeout: 60s
energy:
source: mqtt
topic: dsmr/day-consumption/consumption_electricity_merged
currents:
topic: dsmr/reading/phase_power_current_l1
topic: dsmr/reading/phase_power_current_l2
topic: dsmr/reading/phase_power_current_l3
voltages:
topic: dsmr/reading/phase_voltage_l1
topic: dsmr/reading/phase_voltage_l2
topic: dsmr/reading/phase_voltage_l3
powers:
source: calc
add:
topic: dsmr/reading/phase_currently_delivered_l1
scale: 1000
topic: dsmr/reading/phase_currently_returned_l1
scale: -1000
source: calc
add:
topic: dsmr/reading/phase_currently_delivered_l2
scale: 1000
topic: dsmr/reading/phase_currently_returned_l2
scale: -1000
source: calc
add:
topic: dsmr/reading/phase_currently_delivered_l3
scale: 1000
topic: dsmr/reading/phase_currently_returned_l3
scale: -1000`
When i restart EVCC, DSMR is not visible. Am i doing something wrong?
Also i dont see anyting in the logs.
Is the location of the EVCC file correct? All of my other sensors (Vericle, SMA inverters and my EV charger), are configurered via the interface.
All reactions