Skip to content

Latest commit

 

History

History
96 lines (64 loc) · 2.13 KB

panel_clock.md

File metadata and controls

96 lines (64 loc) · 2.13 KB

Panel Clock

< All Panels | Configuration | FAQ

About

type: clock

The clock panel shows a big clock and uses 4 entities for the weather conditions display.

Config

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

Background

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.

Forecast

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.

Show weather

The main weather icon can be hidden by setting show_weather to False

Show temperature

The main temperature text can be hidden by setting show_temp to False

Show Notifications

The notifications icon can be hidden by setting show_notifications to False

Screens

Panel Clock

Panel Clock Simple

Panel Clock Background