Hi guys, hope you had a relaxed Christmas period.
I am using HA as a docker installation on a Synology NAS, mainly configuring my integrations and dashboards using the graphic lovelace features. So I am not an expert regarding YAML files.
Having said that, I need some help for a modbus integration in oder to read the electric energy consumption from 11 EMU preofessional II smart meters using Modbus.
What I have done so far in oder to receive readings from one of the 11 is the following:
- add the followeing line to my configuration.yaml:
energy: !include modbus.yaml - create a file called modbus.yaml with the following content:
example configuration.yaml entry for multiple TCP connection
modbus:
- name: gebc_1
type: tcp
host: 192.168.2.53
port: 502
sensors:- name: gebc_1
slave: 1
address: 7999
input_type: holding
unit_of_measurement: kWh
device_class: energy
state_class: total_increasing
scale: 0.01
offset: 0
precision: 2
data_type: uint32
- name: gebc_1
I expected to see an entity called geb_c1 and get some readings, depending on the address chosen from the list provided by EMU
So far no success, unfortunately. Can anybody give me some hints, as to what I am dooing wrong here? Or what might be missing?
Thanks in advance
Rainer