Skip to content

Latest commit

 

History

History
63 lines (51 loc) · 2.21 KB

card-glance.md

File metadata and controls

63 lines (51 loc) · 2.21 KB

Glance

Glance cards are a very compact. Very useful to group together multiple sensors for a quick and easy to use view. Keep in mind that this can be used together with entity-filter cards to create dynamic cards.

glance

Options

Name Type Default Description
type string Required glance
entities list Required Entity id's or an entity object (see structure below).
title string Optional Card title

entity object type

Name Type Default Description
entity string Required An entity_id. Example: 'device_tracker.demo_paulus'.
name string Required A new name for the entity_id

Examples

Basic example

- type: glance
  title: Glance card sample
  entities:
    - binary_sensor.movement_backyard
    - light.bed_light
    - binary_sensor.basement_floor_wet
    - sensor.outside_temperature
    - light.ceiling_lights
    - switch.ac
    - lock.kitchen_door

glance-with-title

Example with custom name

- type: glance
  title: Better names
  entities:
    - entity: binary_sensor.movement_backyard
      name: Movement?
    - light.bed_light
    - binary_sensor.basement_floor_wet
    - sensor.outside_temperature
    - light.ceiling_lights
    - switch.ac
    - lock.kitchen_door

Known issues

  • Aspect ratio for images #29
  • Name overlapping bug #45

Feedback

  • Support toggling of entities without opening more-info #49
  • Support justify not just align left #28
  • Allow hiding of values and/or title #33
  • Allow adding empty entities to allow for example a row of 5 items, where 2 are on the left and 2 are on the right with gap in middle