Hi!
I want to use the Modbus Integration to poll my Fronius Inverter (the official Integration uses the WebApi which is quite limited).
I’m a HA beginner, migrating from another system.
I can’t manage to read any data. This is my configuration:
# 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
modbus:
- name: fronius_symo
type: tcp
host: 192.168.178.75
port: 502
sensors:
- name: TestModbus2
input_type: holding
slave: 1
address: 40119
data_type: uint16
logger:
default: warning
logs:
homeassistant.components.modbus: debug
pymodbus: debug
the entity TestModbus stays always 0 and is not updated.
I successfully can poll the data over Modbus from my old system, and also I can poll them with a PC programm (QModMaster).
The Log is empty.
I don’t know how to continue… any advice?