Support for Modbus Sungrow with Notficication Battery Level

Hi all,

i am ver new in Smart Home and Home Assistant. So sorry for this first question - But iam not able to find a solution.

I have a Sungrow PV - Using the MK Kaiser Modbus integration and want now a automation for a notification if the battery is 100% to my smartphone via home assistant app.

This is not working - I think somthing with the trigger is wrong - Because if i checked it with a Light on its working and it is triggering - But not with the battery.

Could anyone please help me with this.

I have in the kaiser 2 sensors - One as a template one in category modbus.

alias: Benachrichtigung PV-Anlage Batterie 100%
description: Benachrichtigung PV-Anlage Batterie 100%
trigger:
  - platform: numeric_state
    entity_id:
      - sensor.battery_level_nominal
    above: 100
    for:
      hours: 0
      minutes: 5
      seconds: 0
condition: []
action:
  - parallel:
      - service: notify.mobile_app_iphone
        data:
          message: PV-Anlage Batterie 100% geladen
          title: Information
mode: single

Thank you

Set the above to 99.9 vs 100 to start.

alias: Benachrichtigung PV-Anlage Batterie 100%
description: Benachrichtigung PV-Anlage Batterie 100%
trigger:
  - platform: numeric_state
    entity_id:
      - sensor.battery_level_nominal
    above: 99.9
    for:
      hours: 0
      minutes: 0
      seconds: 5
condition: []
action:
  - parallel:
      - service: notify.mobile_app_iphone
        data:
          message: PV-Anlage Batterie 100% geladen
          title: Information
mode: single

Set time for 5 seconds for testing

Damn - That was the issue - Thanks a lot…