As it looks like Lovelace is going to become the default frontend I thought I had better get understanding it. I am trying to get a glance card set up with entity-filtering to just show lights that are on. With a glance card, I can display rows and rows of devices. When combined with entity filtering I only seem to get a single row which means most of my devices don’t show up.
This what I have set up so far to test. It works as expected, only displaying lights that are on and going away entirely when all the lights are off. Is there something I am missing that would give me multiple rows to show more devices?
- type: entity-filter
title: lights and switches currently on
show_header_toggle: false
entities:
- light.kitchen_level
- switch.kitchen_counter_switch
- light.floorlamp
- light.living_room_desk_lamp
- switch.attic_switch
- light.basement_stairs_level
- light.media_1
- light.media_2
- light.media_wall
- light.office
- light.frontporch
- light.garage_dimmer_level
- light.garage_upper_level
- switch.conservatory
state_filter:
- "on"
show_empty: false
card:
type: glance
title: lights and switches currently on
Update: I guess it does work as I have it.