SMA Inverters

I have an SMA inverter (SMA5000TL). Looking at the integrations (https://www.home-assistant.io/integrations/sma/) it looks like there’s an integration available.

Does anyone have a successful integration to an SMA inverter? How does your setup look like?

- platform: sma
  host: 151.122.122.243
  password: !secret password_sunny_boy
  sensors:
    current_consumption: [total_consumption]
    pv_power:
    daily_yield:
1 Like

I can see the SMA integration at https://www.home-assistant.io/integrations/sma/ but when I go to add it in Home Assistant, it doesn’t appear to be there???

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 ?

It says:

Configuration

To enable this sensor, add the following lines to your configuration.yaml file:

No, not all integrations have been moved over to the UI. Some you still have to configure manually in YAML.

Hello

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 …

1 Like