Please help i have spent 2 weeks no outcome yet!

Hi
My question may be a simple one for yours. However, I have spent 2 weeks to resolve the issue but no luck yet. I am using the dashboard files using AppDaemon plugin and all I want to do is to show the weather information and forecast in a single card like what I get in the HADash using weather.home entity. I have tried yr, metoffice platforms and unfortunately there is not a single complete guide to use them. What I did was to define the platform in configuration.yaml :slight_smile:
weather:

  • platform: metoffice
    api_key: #########
    name: homeW
    latitude: XX
    longitude: YY
    monitored_conditions:
    • pressure
    • weather
    • temperature
    • feels_like_temperature
    • wind_speed
    • wind_direction
    • wind_gust
    • visibility
    • visibility_distance
    • uv
    • precipitation
    • humidity

So how should I use this in the .dash file? I have tried different ways explained by different people in forums and the best thing I could get was only showing one sensor data in a card not all them and even not the forecast.

Please shoot me your responses here so I can follow your instructions to a success. Thanks indeed.

I have made some progress and added the followings to configuration.yaml but still those states and attributes do not appear in the developer panel

  • platform: template
    sensors:
    weather_temperature:
    friendly_name: “TemperatureValue”
    entity_id: weather.localweather
    unit_of_measurement: ‘degrees’
    value_template: “{{ state_attr(‘weather.localweather’, ‘temperature’) }}”
    weather_pressure:
    friendly_name: “PressureValue”
    entity_id: weather.localweather
    unit_of_measurement: ‘hkPa’
    value_template: “{{ state_attr(‘weather.localweather’, ‘pressure’) }}”
    weather_humidity:
    friendly_name: “HumidityValue”
    entity_id: weather.localweather
    unit_of_measurement: ‘%’
    value_template: “{{ state_attr(‘weather.localweather’, ‘humidity’) }}”