Hallo,
I´ve made my own weather station template via my config.yaml
weather:
name: "My Weather Station"
condition_template: "{{ states('weather.forecast_home') }}"
temperature_template: "{{ states('sensor.my_temperature') | float }}"
temperature_unit: "°C"
humidity_template: "{{ states('sensor.my_humidity') | float }}"
forecast_daily_template: "{{ state_attr('weather.forecast_home', 'forecast') }}"```
Since 2024.3 this "{{ state_attr('weather.forecast_home', 'forecast') }}" don´t work anymore.
I know that it should work with the service weather.get_forecasts.
How can I get the output from the service call into forecast_daily_template?