HAdashboard weather widget hide some information

hello there all
I was wondering if there is a way to hide some info in the weather widget. I would like to just specific space and have only some of the sensors, not all coming from dark sky. 50%20PM

Thank you all for looking at it and help me out with this, I am really new to HAdashboard.

you can use some other sensors for values by setting them in the widget.

sample_weather:
  title: Today
  show_forecast: 1
  prefer_icons: 1
  forecast_title: Tomorrow
  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_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

just replace the sensors you want to have changed.
when you want some values not shown then just give 2 double quotes ("") for that sensor.

1 Like