I have been using Home Assistant for all of a couple of hours, so forgive me - but do all integrations that are available appear in the list when I click “Add Integration” in Home Assistant ?
I also have an SMA 5000 Tripower but the only functional variant for me was modbus because my Webconnect does not have a web interface (below is part of settings in configuration.yaml):
modbus:
name: SMA
type: tcp
host: 192.168.x.x
port: 502
- platform: modbus
scan_interval: 60
registers:
- name: SMA Power AC
hub: SMA
unit_of_measurement: W
slave: 3
register: 30775
count: 2
data_type: int
- name: SMA Daily Yield
hub: SMA
unit_of_measurement: kWh
slave: 3
register: 30517
scale: 0.001
precision: 3
count: 4
data_type: uint
The codes used in a register item are from the manual for SMA inverters from www.sma.de, you can choose what do you need vizualise.
I hope it will be usefull for owners of similar SMAs …