That may very well be the problem. last_triggered is a rather new feature which I havenāt looked into yet, but since Itās a timestamp I imagine it should require some special treatmentā¦
awaiting that, do you have any suggestions for the order in this auto-card? Could I maybe only show the last 5 last_triggered entities by adding count: 5, to prevent constant re-rendering of the view?
please let me put forward another challenge I canāt find the solution for yet. Id like to auto create a card with all views to be able to create a āCastā card. I now have this manually setup:
- type: entities
title: Cast Control
show_header_toggle: false
entities:
- type: cast
name: Home
view: 'home'
- type: cast
name: System
view: 'home_assistant'
- type: cast
name: Lights
view: 'lights'
I can add all 23 tabs (ā¦) of course, but couldnāt I somehow use the auto-entities card to create this. Simply follow the setup in ui-lovelace.yaml, and read the title (name) and path (view) into this cardā¦
edit probably no, since these arenāt entitiesā¦maybe something like lovelace_gen could do thisā¦
Hi there,
Iām trying to use auto-entities,layout-card and the button card to show lights as buttons if they are on.
It works like a charm but I like to put a header over the buttons (e.g. markdown card). I set the parameter show_empty:false in auto-entities-card. If there are no lights on, the auto-entities-card is not shown. But how could I hide a the header?
OK; thanks. Thatās a shame. Currently have to specify the groups twice (as light groups to use them as lights and as group groups!) in order to tidy up my lovelace.yaml and use the group card.
building on my post above excluding the entities color_temp: ā! noneā I am now trying the opposite, and only show lights with color_temp: 'none', or automations with last_triggered: 'none' bit that fails completely.
Found a solution by myself. I wrap it in a conditional card. Only problem is that I need a group with all lights to handle the condition (auto-entities filters the same group than). Thatās not the perfect way because new lights need to be added to the group but it works.
One of the last updates to this card has stopped working correctly with geo_location entities that can come and go. I am getting the dreaded yellow bar error when an entity is no longer available instead of it just disappearing. When I refresh it disappears. This was always automatically handled but one of the latest updates has stopped.
what surprised me was I needed to declare the exclusions almost completely double, and could not ad both attributes under the same exclusion. anyways, this give me exactly what I hoped for, (next to the other auto-entities lights cards, explicitly Including the rgb_color and color_temp lights)
nice!
I have two questions. First, how can I specify a list to the name filter? For example, I would only like to only display entities that have friendly names of ā550ā, ā231Nā, ā235ā, ā235Nā or ā553Kā.
Secondly, the documentation says that one can nest auto-entities. Iām not exactly sure if that is the same thing that is done on multiple cards on the example image (for example, the card āBasic filtersā has multiple sections with different auto-entities). I tried to replicate this, but did not get it working. If possible, could you post a example configuration of a card that has multiple section of different auto-entities.
Thank you as always, your work with these custom cards is phenomenal.