Only show time from DateTime Helper in Lovelace Glance

Hello,

I am trying to show only the time (in 24h format) of a DateTime Helper in a Glance widget. I currently have:

card:
  show_name: false
  show_icon: true
  show_state: true
  type: glance
  entities:
    - entity: input_datetime.alarm

This gives me:

image

But now I only want to display the time (24h format), without the date. How do I achieve this?

I tried creating a template sensor (works, confirmed with Developer Tools):

template:
  - sensor:
      - name: Alarm Time
        state: >
            {{ states('input_datetime.alarm').split(' ')[1][:-3] }}
        unique_id: template_sensor.alarm_time

But I don’t know how to display a template sensor in the Glance card.

- entity: template_sensor.alarm_time does not work.

Any hints how I can get this to work?

Thanks :slight_smile:

1 Like

It turned out to be a simple syntax error…

- entity: sensor.alarm_time

works as expected in Lovelace. Just use sensor instead of template_sensor.