-
Dear Community The manual worked fine and I have now a Pi3+ running with the Cable for "Iskaemeco AM550 G3". Grafana Dashboard works fine. Thanks for the detailed documentation for me as a dummy :-) Could someone help me here? Would be great to show the engergy consumption in the energy dashboard of homeassistant. Thanks and kind regards |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Hi Mathias In our demo we use mosquitto as MQTT broker with the default config. I assume that means that the MQTT port is only open for Currently we do not support the HomeAssistant feature Auto-Discovery. However you can manually add MQTT items to HomeAssistant following this guide. Select a suitable MQTT component of the drop-down list. You can get the available MQTT topics with Please note, I haven't tried this by myself. The above is what I got from documentation. |
Beta Was this translation helpful? Give feedback.
-
Home Assistant integration - Step by Step For all, having the same problem, this How-To might help.
Good to know for the Raspberry:
Modify Configuration.YAML For tracking the import and export of energy, you would only need „Active_Energy_P_T1“ and „Active_Energy_P_T2“. (Nieder- und Hochtarif). (you could also delete all the other names below if you only want to monitor consumption) -------paste this into your configuration.yaml file at the end of the file.------- # Connection to EKZ Smartmeter
# Example configuration.yaml entry
mqtt:
sensor:
- name: "Active_Power_P"
unique_id: Momentan_aktive_Importleistung_(+A)
state_topic: "smartmeter/ISK1xxxxxxxxxxxx8/ACTIVE_POWER_P"
unit_of_measurement: "W"
device_class: energy
value_template: "{{ value_json.value }}"
- name: "Active_Power_N"
unique_id: Momentan_aktive_Exportleistung_(-A)
state_topic: "smartmeter/ISK1xxxxxxxxxxxx8/ACTIVE_POWER_N"
unit_of_measurement: "W"
device_class: energy
value_template: "{{ value_json.value }}"
- name: "Reactive_Power_P"
unique_id: Momentan_reaktive_Importleistung_(-R)_Blindleistung
state_topic: "smartmeter/ISK1xxxxxxxxxxxx8/REACTIVE_POWER_P"
unit_of_measurement: "VAr"
device_class: energy
value_template: "{{ value_json.value }}"
- name: "Reactive_Power_N"
unique_id: Momentan_reaktive_Importleistung_(+R)_Blindleistung
state_topic: "smartmeter/ISK1xxxxxxxxxxxx8/REACTIVE_POWER_N"
unit_of_measurement: "VAr"
device_class: energy
value_template: "{{ value_json.value }}"
- name: "Active_Energy_P"
unique_id: EKZ_Zaehlerstand_Bezug_total
state_topic: "smartmeter/ISK1xxxxxxxxxxxx8/ACTIVE_ENERGY_P"
unit_of_measurement: "Wh"
device_class: energy
state_class: total_increasing
value_template: "{{ value_json.value }}"
- name: "Active_Energy_P_T1"
unique_id: EKZ_Zaehlerstand_Bezug_total_Hochtarif
state_topic: "smartmeter/ISK1xxxxxxxxxxxx8/ACTIVE_ENERGY_P_T1"
unit_of_measurement: "Wh"
device_class: energy
state_class: total_increasing
value_template: "{{ value_json.value }}"
- name: "Active_Energy_P_T2"
unique_id: EEKZ_Zaehlerstand_Bezug_total_Niedertarif
state_topic: "smartmeter/ISK1xxxxxxxxxxxx8/ACTIVE_ENERGY_P_T2"
unit_of_measurement: "Wh"
device_class: energy
state_class: total_increasing
value_template: "{{ value_json.value }}"
- name: "Active_Energy_N"
unique_id: EKZ_Zaehlerstand_Rueckspeisung_total
state_topic: "smartmeter/ISK1xxxxxxxxxxxx8/ACTIVE_ENERGY_N"
unit_of_measurement: "Wh"
device_class: energy
state_class: total_increasing
value_template: "{{ value_json.value }}"
- name: "Active_Energy_N_T1"
unique_id: EKZ_Zaehlerstand_Rueckspeisung_total_Hochtarif
state_topic: "smartmeter/ISK1xxxxxxxxxxxx8/ACTIVE_ENERGY_N_T1"
unit_of_measurement: "Wh"
device_class: energy
state_class: total_increasing
value_template: "{{ value_json.value }}"
- name: "Active_Energy_N_T2"
unique_id: EKZ_Zaehlerstand_Rueckspeisung_Niedertarif
state_topic: "smartmeter/ISK1xxxxxxxxxxxx8/ACTIVE_ENERGY_N_T2"
unit_of_measurement: "Wh"
device_class: energy
state_class: total_increasing
value_template: "{{ value_json.value }}"
- name: "Reactive_Energy_Q1"
unique_id: Blindenergie_QI_(+Ri)
state_topic: "smartmeter/ISK1xxxxxxxxxxxx8/REACTIVE_ENERGY_Q1"
unit_of_measurement: "VArH"
device_class: energy
value_template: "{{ value_json.value }}"
- name: "Reactive_Energy_Q2"
unique_id: Blindenergie_QII_(+Ri)
state_topic: "smartmeter/ISK1xxxxxxxxxxxx8/REACTIVE_ENERGY_Q2"
unit_of_measurement: "VArh"
device_class: energy
value_template: "{{ value_json.value }}"
- name: "Reactive_Energy_Q3"
unique_id: Blindenergie_QIII_(+Ri)
state_topic: "smartmeter/ISK1xxxxxxxxxxxx8/REACTIVE_ENERGY_Q3"
unit_of_measurement: "VArh"
device_class: energy
value_template: "{{ value_json.value }}"
- name: "Reactive_Energy_Q4"
unique_id: Blindenergie_QIV_(+Ri)
state_topic: "smartmeter/ISK1xxxxxxxxxxxx8/REACTIVE_ENERGY_Q4"
unit_of_measurement: "VArh"
device_class: energy
value_template: "{{ value_json.value }}"
- name: "Power_Factor"
unique_id: Leistungsfaktor
state_topic: "smartmeter/ISK1xxxxxxxxxxxx8/POWER_FACTOR"
unit_of_measurement: "cosphi"
device_class: energy
value_template: "{{ value_json.value }}" Save the Yaml file and go back to Homeassistant. Now go to the Energy Dashboard and add the Source „active_energy_p_T1“ and „active_energy_p_T2“. Klick Save - Done. I hope it works for all of you having the same problem I had. |
Beta Was this translation helpful? Give feedback.
Home Assistant integration - Step by Step
For all, having the same problem, this How-To might help.
Here is my situation:
Good to know for the Raspberry: