Dear community,
I am currently working on my bachelor thesis and I am having trouble integrating my Mbus meters into Home Assistant. I have a Solvimus Gateway MBUS-GE20M, which translates Mbus to Modbus TCP. You can find the following information in the images below, along with my code for the yaml file. It would be great if someone could take a look and tell me what mistake I might have made.
# Loads default set of integrations. Do not remove.
default_config:
# Load frontend themes from the themes folder
frontend:
themes: !include_dir_merge_named themes
automation: !include automations.yaml
script: !include scripts.yaml
scene: !include scenes.yaml
sensor: !include sensor.yaml
modbus:
- name: MBUS
type: tcp
host: 192.168.7.96
port: 502
sensors:
- name: HotWater
slave: 1
address: 20
input_type: holding
unit_of_measurement: m3
state_class: measurement
scale: 0.001
data_type: Float32
Host, Port and Adress are correct.
thankyou for your help.