I am getting entity not found found sensor.dark_sky_precip_1. Have read all of you posts and tried everything but no luck. here is my configuration.yaml code and my hadashboard code. Did notice that precip_type is the only sensor that is not set up when I look at the stats.
- platform: darksky
api_key: xxxxxxxxxxxxxxxxxxxxxxxxxxxxx
forecast: 1
update_interval:
minutes: 20
monitored_conditions:
- summary
- precip_type
- precip_probability
- precip_intensity
- precip_accumulation
- temperature
- wind_speed
- wind_bearing
- cloud_cover
- humidity
- pressure
- visibility
- temperature_max
- temperature_min
- icon
- apparent_temperature
weather:
widget_type: weather
entity: group.weather
title: Today
units: “°F”
show_forecast: 1
forecast_title: Tomorrow
here is the html source. from my hadashboard display
widgets[“default-weather”] = new baseweather(“default-weather”, “”, “default”, {‘widget_type’: ‘baseweather’, ‘fields’: {‘title’: ‘Today’, ‘show_forecast’: 1, ‘prefer_icons’: 0, ‘unit’: ‘’, ‘wind_unit’: ‘’, ‘pressure_unit’: ‘’, ‘rain_unit’: ‘’, ‘temperature’: ‘’, ‘humidity’: ‘’, ‘precip_probability’: ‘’, ‘precip_intensity’: ‘’, ‘precip_type’: ‘’, ‘wind_speed’: ‘’, ‘pressure’: ‘’, ‘wind_bearing’: ‘’, ‘apparent_temperature’: ‘’, ‘icon’: ‘’, ‘bearing_icon’: ‘mdi-rotate-0’, ‘precip_type_icon’: ‘mdi-umbrella’, ‘forecast_title’: ‘Tomorrow’, ‘forecast_temperature_min’: ‘’, ‘forecast_temperature_max’: ‘’, ‘forecast_icon’: ‘’, ‘forecast_precip_probability’: ‘’, ‘forecast_precip_type’: ‘’, ‘forecast_precip_type_icon’: ‘mdi-umbrella’}, ‘entities’: {‘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’}, ‘css’: {}, ‘static_css’: {‘title_style’: ‘color: #00aaff;’, ‘unit_style’: ‘color: #ffaa00;’, ‘main_style’: ‘color: #ffaa00;’, ‘sub_style’: ‘color: #00aaff;’, ‘sub_unit_style’: ‘color: #00aaff;’, ‘widget_style’: ‘background-color: #444;’}, ‘icons’: {‘snow’: ‘mdi-snowflake’, ‘rain’: ‘mdi-umbrella’, ‘sleet’: ‘mdi-weather-snowy-rainy’, ‘unknown’: ‘mdi-umbrella’}, ‘static_icons’: [], ‘entity’: ‘group.weather’, ‘title’: ‘Today’, ‘units’: ‘°F’, ‘show_forecast’: 1, ‘forecast_title’: ‘Tomorrow’, ‘namespace’: ‘default’})
I did try to change the confg.yaml to this format and got different strange results.
- platform: darksky
api_key: xxxxxxxxxxxxxxxxxxxxxxxxxxxxx
forecast:
- 1
update_interval:
minutes: 20
monitored_conditions:
- summary
- precip_type
- precip_probability
- precip_intensity
- precip_accumulation
- temperature
- wind_speed
- wind_bearing
- cloud_cover
- humidity
- pressure
- visibility
- temperature_max
- temperature_min
- icon
- apparent_temperature