Time, date, yr stopped displaying on home page

my config is as seen here: https://www.home-assistant.io/components/time_date/

sensor:
  - platform: time_date
    display_options:
      - 'time'
      - 'date'

it was working fine then stopped. i no longer see on the home page nor in dev-state.
not that i care to see time/date. but would this affect my time based automation such as…turning lights on and off at certain time?

yr not working as well :frowning:

sensor:
  # Weather prediction
  - platform: yr

home page screen shows these:
image

I’m guessing you added a second sensor section recently. You should only have 1 sensor section.

sensor:
  # Weather prediction
  - platform: yr
  - platform: time_date
    display_options:
      - 'time'
      - 'date'
  - platform: some_other_platform
  - platform: some_other_platform2
  - etc...

thank you! i didnt know the syntax till now.
everything is working as seen here:

sensor:
  # Weather prediction
  - platform: yr
  - platform: time_date
    display_options:
      - 'time'
      - 'date'
  - platform: airvisual
    api_key: xxxxxxxxxxxxx
1 Like