Problème avec du Template pour avoir la température maximum de la journée

Salut,
faut créer un template avec la météo par jours et après la syntaxe est identique avec ton ancienne pour récupérer la température max, sauf qu’il faudras changer l’entité.

exemple de template par jours:

template:
  - trigger:
      - platform: state
        entity_id: weather.xxxx #ton entité météo france.
    action:
      - service: weather.get_forecasts
        data:
          type: daily
        target:
          entity_id: weather.xxxx
        response_variable: daily
    sensor:
      - name: Weather Forecast Jour xxxx
        unique_id: weather_forecast_jour_xxxx
        state: "{{ daily['weather.xxxx'].forecast[0].condition }}"
        attributes:
          forecast: "{{ daily['weather.xxxx'].forecast }}"
        availability:  "{{ states('weather.xxxx') not in ['unknown', 'unavailable', 'none'] }}"

Pour récupérer la température:

{{ state_attr('sensor.weather_forecast_jour_xxxx','forecast')[0].temperature | float(0) }}
2 « J'aime »