Weather widget keeps showing errors entity not found

Hello,

I’m configuring HADashboard to show the weather widget, but it keeps throwing errors about entities I’m not using (or am I overseeing something?)

In my configuration.yaml I have:

sensor:
  - platform: darksky
    api_key: !secret ds_api_key
    language: nl
    forecast:
      - 1
    monitored_conditions:
      - precip_accumulation
      - wind_gust
      - temperature_high
      - temperature_low
      - apparent_temperature_high
      - apparent_temperature_low
      - uv_index
      - moon_phase
      - sunrise_time
      - sunset_time
      - alerts
      - summary
      - icon
      - nearest_storm_distance
      - nearest_storm_bearing
      - precip_type
      - precip_intensity
      - precip_probability
      - temperature
      - apparent_temperature
      - dew_point
      - wind_speed
      - wind_bearing
      - cloud_cover
      - humidity
      - pressure
      - visibility
      - ozone
      - minutely_summary
      - hourly_summary
      - daily_summary
      - temperature_max
      - temperature_min
      - apparent_temperature_max
      - apparent_temperature_min
      - precip_intensity_max

In my dashboard I have:

weather:
    widget_type: weather
    title: Het weer
    show_forecast: 1
    prefer_icons: 1
    forecast_title: Morgen
    sensors:
        icon: sensor.dark_sky_icon
        temperature: sensor.dark_sky_temperature
        apparent_temperature: sensor.dark_sky_apparent_temperature
        humidity: sensor.dark_sky_humidity
        precip_probability: sensor.dark_sky_precip_probability
        precip_intensity: sensor.dark_sky_precip_intensity
        precip_type: sensor.dark_sky_precip
        pressure: sensor.dark_sky_pressure
        wind_speed: sensor.dark_sky_wind_speed
        wind_bearing: sensor.dark_sky_wind_bearing
        forecast_icon: sensor.dark_sky_icon_1d
        forecast_precip_probability: sensor.dark_sky_precip_probability_1d
        forecast_precip_type: sensor.dark_sky_precip_1d

And one of the errors:

image

And what to do if I only want to show the temperature?

image

I tried:

weather_small:
    widget_type: weather
    sensors:
        icon: sensor.dark_sky_icon
        temperature: sensor.dark_sky_temperature

And:

weather_small:
    widget_type: weather
    sensors:
        icon: sensor.dark_sky_icon
        temperature: sensor.dark_sky_temperature
        "humidity": sensor.dark_sky_humidity

But adding "" to humidity does not make it go away (reffering to HAdashboard weather widget hide some information)

then just use a sensor widget and use the sensor that shows the temperature.

Thank you, that kinda works but it’s not showing the cloud/sun/moon in front of it :frowning:

of course not. but you asked for temperature only :wink:
you could use an icon widget to show that icon, but you would get 2 widgets total.

adding “” to humidity means using:

humidity: ""

quoting humidity like you did doesnt change anything, because YAML already sees it as a string.

You are awesome! Thank you!

Any idea about getting rid of the rest (for humidity adding “” worked but not for the rest):

image

        rain: ""
        wind: ""
        Apparent Temp: ""

Above does not work.

docs always help. :wink:
according to the docs, there are these options:

    icon: sensor.dark_sky_icon
    temperature: sensor.dark_sky_temperature
    apparent_temperature: sensor.dark_sky_apparent_temperature
    humidity: sensor.dark_sky_humidity
    precip_probability: sensor.dark_sky_precip_probability
    precip_intensity: sensor.dark_sky_precip_intensity
    precip_type: sensor.dark_sky_precip
    pressure: sensor.dark_sky_pressure
    wind_speed: sensor.dark_sky_wind_speed
    wind_bearing: sensor.dark_sky_wind_bearing
    forecast_icon: sensor.dark_sky_icon_1
    forecast_temperature_min: sensor.dark_sky_daily_low_temperature_1
    forecast_temperature_max: sensor.dark_sky_daily_high_temperature_1
    forecast_precip_probability: sensor.dark_sky_precip_probability_1
    forecast_precip_type: sensor.dark_sky_precip_1

but you probably get stuck with the word rain and wind, with nothing behind it.
that can only be helped by creating a custom widget.

That does make the Apparent Temp go away, but stuck with Rain and Wind indeed :frowning:
Tried looking for a useable custom widget but didn’t find one that I can use yet.

i dont think there is 1 that just shows what you want, so you need 2 widgets or create a custom widget yourself (isnt extremely hard, but needs some work)