Creating individual weather sensors met.no

Struggling with creating some weather sensors.

My weather card looks like this

image

I am trying to extract the forecast high and low data into separate sensors…

Using the below, forecast temperature next hour works. Outside temperature high does not - ‘unavailable’… any thoughts?

Thank you!

  - trigger:
      - platform: homeassistant
        event: start
      - trigger: time_pattern
        hours: /1
    action:
      - action: weather.get_forecasts
        data:
          type: hourly
        target:
          entity_id: weather.home
        response_variable: hourly
    sensor:
      - name: Temperature forecast next hour
        unique_id: temperature_forecast_next_hour
        state: "{{ hourly['weather.home'].forecast[0].temperature }}"
        unit_of_measurement: °C

      - name: Outside Temperature High
        state: "{{ daily['weather.home'].forecast[0].temperature }}"
        attributes:
          forecast: "{{ daily['weather.forecast_home'].forecast }}"
        unit_of_measurement: °C

You haven’t defined a daily variable.

Thank you, perfect! Much appreciated…