< All Panels | Configuration | FAQ
type: clock
The clock panel shows a big clock and uses 4 entities for the weather conditions display.
panels:
# clock panel
- type: clock
entity: weather.home
# clock panel with forecast
- type: clock
entity: weather.home
forecast: sensor.weather_forecast_hourly
# clock panel with a different background
- type: clock
entity: weather.home
background: dog_1
# clock panel without current weather, forecast and temperature, no notifications icon
- type: clock
entity: weather.home
forecast: sensor.weather_forecast_hourly
show_weather: False
show_temp: False
show_notifications: False
The clock panel can have different background images. To set a background use the background
param.
Possible values:
- default
- spring
- summer
- autumn
- winter
- dog_1
- dog_2
- cat
Dynamic background values are possible using HomeAssistant templates.
background: template:{...}
The return value should match a background name.
To get weather forecasts on the panel, the sensor containing the forecast data needs to be set. Use the forecast
param.
forecast: sensor.weather_forecast_hourly
or forecast: sensor.weather_forecast_daily
.
See FAQ for details about the forecast sensor.
The main weather icon can be hidden by setting show_weather
to False
The main temperature text can be hidden by setting show_temp
to False
The notifications icon can be hidden by setting show_notifications
to False