Hello, Im new to HA, im hosting it using HA OS on RPi4 4GB.
I use weather integration from Met.no
It looks like this, as you can see it has daily forecasts, even hourly (attachment).
I need to get max temperature from next day (for my irrigation system), so I went to Dev Tools --> States and it contains only these attributes:
temperature: 23.4
dew_point: 12.3
temperature_unit: °C
humidity: 50
cloud_coverage: 0
uv_index: 0
pressure: 1012.1
pressure_unit: hPa
wind_bearing: 93.4
wind_speed: 1.19
wind_speed_unit: m/s
visibility_unit: km
precipitation_unit: mm
attribution: Weather forecast from met.no, delivered by the Norwegian Meteorological Institute.
friendly_name: Forecast Home
supported_features: 3
Even when I go to Dev Tools --> Template and try to insert this:
{{ state_attr('weather.forecast_home', 'get_forecasts') }}
{{ state_attr('weather.forecast_home', 'forecast') }}
{% set forecast = state_attr('weather.forecast_home', 'forecast') %}
{% if forecast %}
{{ forecast[0].temperature }}
{% else %}
No forecast available
{% endif %}
I get:
None
None
No forecast available
So any help please to get forecast from Met.no integration?