Hi,
I added my new Huawei inverter to Home Assistant, and successfully set up the HACS integration: GitHub - wlcrs/huawei_solar: Home Assistant integration for Huawei Solar inverters via Modbus
Now, I want to send a daily push notification containing the yield of energy of that day - and here the problem start. What I tried in the action part of the automation is:
service: notify.all_devices
data:
title: PV
message:
Heuter Ertrag: {{ state_attr('sensor.huawei_wechselrichter',
'DAILY_YIELD_ENERGY') }}
But that does not work, and to be honest, I have no clue where I could find the attribute name (DAILY_YIELD_ENERGY is only a guess looking at some code files).
Can someone help or point me to a way how I can find out about available attribute names? Thanks!