Forked from thomasloven/lovelace-auto-entities to continue development of the stalled project.
Automatically populate lovelace cards with entities matching certain criteria.
To install via HACS, add this repo https://github.com/Lint-Free-Technology/lovelace-auto-entities as a custom HACS repository using type Dashboard. Use the button above to do this in one step. You are best to remove thomasloven/lovelace-auto-entities in your HACS to avoid confusion as to what repo you are using.
type: custom:auto-entities
card: <card>
card_param: <card_param>
entities:
- <entity>
- <entity>
filter:
template: <template>
include:
- <filter>
- <filter>
exclude:
- <filter>
- <filter>
show_empty: <show_empty>
card_as_row: <card_as_row>
else: <else>
unique: <unique>
rename: <rename_method>
sort: <sort_method>| Option | Type | Description | Default |
|---|---|---|---|
card |
Dashboard card* | The card to display. Specify this as you would specify any normal dashboard card, but omit the entities parameter. |
entities-card |
entities |
List of Entities** | Any entities added here will be added to the card before any filters are applied | |
filter |
|||
Β Β template |
string | A jinja template evaluating to a list of entities to include | |
Β Β include |
List of Filters | A list of filters specifying which entities to add to the card | |
Β Β exclude |
List of Filters | A list of filters specifying which entities to remove from the card | |
show_empty |
true/false |
Whether to display the card if there are no entities | true |
else |
Dashboard card* | Card to display if the main card has no entities. Overrides show_empty |
|
rename |
Rename config | How to rename the entities of the card | none |
sort |
Sort config | How to sort the entities of the card | none |
card_param |
string | The parameter of the card to populate with entities | entities |
card_as_row |
true/false |
Set to true if you use auto-entities card as a nested row in an entities card. |
false |
* Dashboard card
** Entities
The two main filter sections include and exclude each takes a list of filters.
Each filter has a set of rules and will match entities which match ALL rules:
| Rule | Matches | Example |
|---|---|---|
domain |
Entity domain | light, binary_sensor, media_player |
state |
Current state of entity. | "on", home, "3.14", "Triggered" |
state_translated |
Current state of entity as translated using Frontend language user setting. For numeric states always use state as translated numeric values will include formatting that will give unexpected results e.g. '3.14 s' => 3 |
Γteint, Maison, DΓ©clenchΓ© |
entity_id π |
Full entity id | light.bed_light, input_binary.weekdays_only |
name |
Friendly name attribute | Kitchen lights, Front door |
group π |
Entities in the group | group.living_room_lights |
group_expanded π |
Entities in the group, recursively expanding any nested groups | group.all_lights |
area π |
Entities in a given area. Also matches all entities belonging to a Device in the area. | Kitchen |
floor π |
Entities on a given floor. Also matches all entities belonging to a Device on that floor. | Second, Basement |
level |
Entities on a given level. | 2, >1 |
device π |
Entities belonging to a Device | Thomas iPhone |
label π |
Entities that are tagged with a certain label | Show on dashboard, Holiday light |
device_manufacturer |
Entities belonging to a device by a given manufacturer | IKEA |
device_model |
Entities belonging to a device of a given model | Hue white ambiance E26/E27 (8718696548738) |
integration π |
Entities included by a given integration. This is not possible for all integrations. | plex, input_boolean, xiaomi_miio, mobile_app |
hidden_by |
Who has hidden an entity | user, integration |
attributes |
Map of attribute: value pairs to match |
|
last_changed |
Time since last state change (defaults to minutes) | < 15, > 2 d ago |
last_updated |
Time since last update (defaults to minutes) | < 15, > 2 d ago |
entity_category |
Entity category | config, diagnostic |
not |
Matches entities that do not match a filter | |
or |
Matches any in a list of filters | |
and |
Matches all in a list of filters |
Special options:
| Option | Description |
|---|---|
options |
Map of configuration options to apply to the entity when passed to the card |
type |
If a type is given, the filter is handled as a complete entity description and passed along directly to the card. Special values divider and section insert a visual divider or section heading β see Special types below. |
rename |
Rename config applied to entities in this filter only |
sort |
Sort config applied to entities in this filter only |
Two built-in special types can be inserted anywhere in the filter.include list to add visual structure to an entities card:
| Type | Description |
|---|---|
divider |
Inserts a horizontal divider line between the entities above and below it |
section |
Inserts a section heading. Accepts an optional label to display as the heading text |
type: divider β no additional options required:
type: custom:auto-entities
card:
type: entities
filter:
include:
- domain: light
- type: divider
- domain: switchtype: section β optionally supply a label:
type: custom:auto-entities
card:
type: entities
filter:
include:
- domain: light
- type: section
label: Switches
- domain: switchThe label for a section accepts either a plain string (legacy form) or the choose-selector object form produced by the visual editor. Both are equivalent and supported:
Legacy (plain string) form:
- type: section
label: My Section TitleChoose selector (visual editor) form:
- type: section
label:
custom: My Section Title
active_choice: customNote: Special type entries (
divider,section) are inserted as-is into the card entity list. They are not subject tofilter.excluderules and do not count towards entity matching.
NOTE: Filters marked π use the choose selector in the visual editor to allow for direct object selection or custom string. When you use the visual editor on an older config, the yaml for filters using the choose selector will be upgraded accordingly. After upgrade you will see yaml for filters using choose selectors similar to that shown below. Both legacy and choose selector config are supported.
Legacy filter config:
type: custom:auto-entities
card:
type: entities
title: Test Areas
filter:
include:
- options: {}
area: kitchen
exclude: []Choose selector filter config:
type: custom:auto-entities
card:
type: entities
title: Test Areas
filter:
include:
- options: {}
area:
area: kitchen
active_choice: area
exclude: []The filter section template takes a jinja template which evaluates to a list of entities or entity objects.
auto-entities creates a list of entities by:
- Including every entity given in
entities:(this allow nesting ofauto-entitiesif you'd want to do that for some reason...) - Include every entity listed in a
filter.templateevaluation - Include all entities that matches ALL options of ANY filter in the
filter.includesection. The same entity may be included several times by different filters. - Remove all entities that matches ALL options on ANY filter in the
filter.excludesection.
It then creates a card based on the configuration given in card:, and fills in entities: of that card with the entities from above.
The list of entities added to the card will be on the form:
- entity: <entity_id>
<options>Any filter option can use * as a wildcard for string comparison. Note that strings must be quoted when doing this:
filter:
include:
- name: "Bedroom *"
- entity_id: "sensor.temperature_*_max"Any filter option can use javascript Regular Expressions for string comparison. To do this, enclose the regex in /. Also make sure to quote the string:
filter:
include:
- name: "/^.* [Ll]ight$/"
- entity_id: "/sensor.temperature_4[abd]/"Any filter option dealing with numerical quantities can use comparison operators if specified as a string (must be quoted):
filter:
include:
- attributes:
battery_level: "<= 50" # Attribute battery_level is 50 or less
- state: "> 25" # State is greater than 25
- attributes:
count: "! 2" # Attribute count is not equal to 2
- state: "= 12" # State is exactly 12 (also matches "12", "12.0" etc.)
- state: "12" # State is exactly "12" but not e.g. "12.0"Note: Since
>has a special function in yaml, the quotation marks are mandatory."> 25"
Any filter option dealing with an event time can filter entities by time elapsed since that event:
filter:
include:
- attributes:
last_seen: "> 1h ago" # Entity was seen more than 1 hour ago
- last_updated: "< 20m ago" # Entity was updated less than 20 minutes ago
- last_triggered: "> 1d ago" # Entity was triggered more than 1 day agoAll the numeric comparison operators are available.
Any option can be used more than once by appending a number or string to the option name:
filter:
include:
- state 1: "> 100"
state 2: "< 200"The filter above matches entities where the state is above 100 AND below 200. Compare to the following:
filter:
include:
- state: "< 100"
- state: "> 200"The two filters above together match entities where the state is below 100 OR above 200.
Some entity attributes actually contain several values. One example is hs_color for a light, which has one value for Hue and one for Saturation. Such values can be stepped into using keys or indexes separated by a colon (:):
filter:
include:
- attributes:
hs_color:1: ">30"The example above matches lights with a hs_color saturation value greater than 30.
Some entity attributes are not text strings, but can be advanced structures. By starting the pattern to match with $$ auto-entities will convert the attribute to JSON before comparing:
filter:
include:
- attributes:
entity_id: "$$*"The example above matches any entity that has a entity_id attribute - i.e. all kinds of group entities.
Entities can be renamed either on a filter-by-filter basis by adding a rename: option to the filter, or all at once after all filters have been applied using the rename: option of auto-entities itself.
The initial name comes from one of two sources β type (Home Assistant-style name composition) or method (single-value extraction). When both are specified, type takes precedence and method is ignored. The find/replace/prepend/append/eval_js string operations are then applied to the result. If neither type nor method is set, string operations are applied to the entity's friendly name directly.
Tip
If the card you are using supports Home Assistant name: config option you can use that in options: on your filter as an altrnative to rename: - type can be entity, device, area, floor.
filter:
include:
- options:
name:
- type: area
- type: entityrename:
# Option A β Home Assistant name parts
# When set, this takes precedence over method.
type: <type> # string or list β see below
separator: <separator>
# Option B β single-value method (used only when type is not set)
method: <method>
attribute: <attribute>
# Applied after whichever option is used
# (if neither type nor method is set, these apply to the friendly name)
find: <find> # string or list β see below
replace: <replace> # string or list β see below
prepend: <prepend>
append: <append>
eval_js: <eval_js>Composes the entity name from one or more named parts, exactly as the Home Assistant frontend does. This gives a name that always matches what Home Assistant itself would display with the same name config.
type:A single part name or a list of part names. Each part can be one of:entityβ the entity's own name from the registry (without device prefix). Entities that have no separate name fall back to the device name, mirroring Home Assistant's behaviour.deviceβ the device nameareaβ the area namefloorβ the floor name{type: text, text: "..."}β a literal string (YAML only)
separator:String used to join multiple parts. Defaults to" "(space).
Note: The visual editor lets you pick name parts from a multi-select list, but it does not support drag-to-reorder. To control the order of parts precisely, use YAML directly.
# Just the entity part (no device prefix) β equivalent to HA's "entity" name
rename:
type: entity
# Device + entity, comma-separated
rename:
type:
- device
- entity
separator: ", "
# Area prefix followed by the entity name
rename:
type:
- area
- entityNote: When
typeis also set,methodis ignored βtypealways takes precedence.
method:One offriendly_name,name,entity_id,domain,state,state_translated,attribute,device,area,remove_device, orremove_area.attribute:Attribute to use as the name ifmethod: attribute. Can be an object attribute (e.g.attribute: rgb_color:2).
| Method | Description |
|---|---|
friendly_name |
Use the entity's friendly name (default HA name) |
name |
Same as friendly_name |
entity_id |
Use the full entity ID |
domain |
Use the entity domain only |
state |
Use the current state value |
state_translated |
Use the formatted/translated state value |
attribute |
Use a specific attribute (requires attribute:) |
device |
Use the device name |
area |
Use the area name |
remove_device |
Strip the device name prefix from the friendly name automatically |
remove_area |
Strip the area name prefix from the friendly name automatically |
The remove_device and remove_area methods let you strip the device or area name prefix from the friendly name without needing to know the name in advance.
rename:
method: remove_devicee.g. device "Smart Plug", entity "Smart Plug energy" β "energy"
rename:
method: remove_areae.g. area "Living Room", entity "Living Room temperature" β "temperature"
Both methods fall back gracefully to the original friendly name when no device or area is associated with the entity.
Note: Using
type: entityis the preferred modern approach and delegates to Home Assistant's own logic. Useremove_device/remove_areafor older Home Assistant versions or when you need exact prefix-stripping behaviour.
These apply after the name has been extracted by either method or type:
find:A JavaScript regular expression string, or a list of regex strings for multiple sequential replacements. Matches in the extracted name are replaced with the correspondingreplaceentry.replace:Replacement string forfind, or a list of replacement strings matching thefindlist. Defaults to""(empty string, i.e. the match is removed). Whenfindis a list andreplaceis shorter, missing entries default to"". Operations are applied in order.prepend:A string to prepend to the name.append:A string to append to the name.trim:Set totrueto trim leading and trailing whitespace from the name after all other operations.eval_js:Set totrueto evaluate${...}template expressions inreplace,prepend, andappend. Available variables:entity_id,entity(entity name),device(device name),area(area name),state(state value string),state_translated(formatted/translated state value),name(extracted name before find/replace).
Get just the entity part using hass.formatEntityName (recommended):
rename:
type: entityDevice and entity joined with " β ":
rename:
type:
- device
- entity
separator: " β "Remove a known prefix from all sensors:
rename:
method: friendly_name
find: "^Living Room "
replace: ""Strip multiple patterns in sequence (list find/replace):
rename:
method: friendly_name
find:
- " energy daily"
- "- plug"
trim: trueNote:
findandreplacelists are applied sequentially β each pair is processed in order. Whenreplacehas fewer entries thanfind, missing entries default to"". List find/replace can only be configured in YAML; the GUI editor will display a notice when lists are in use.
Strip the device name prefix automatically:
rename:
method: remove_deviceAppend the current state value using a JS template:
rename:
method: friendly_name
append: " (${state})"
eval_js: truePrepend the area name if one is set (per-filter rename):
filter:
include:
- domain: sensor
rename:
method: friendly_name
prepend: "${area ? area + ': ' : ''}"
eval_js: trueEntities can be sorted, either on a filter-by-filter basis by adding a sort: option to the filter, or all at once after all filters have been applied using the sort: option of auto-entities itself.
Sorting methods are specified as:
sort:
method: <method>
reverse: <reverse>
ignore_case: <ignore_case>
attribute: <attribute>
first: <first>
count: <count>
numeric: <numeric>
ip: <ip>method:Required One ofdomain,entity_id,name,friendly_name,device,area,state,attribute,last_changed,last_updatedorlast_triggered.nameβ sorts by the entity's display name after anyrename:transformation. Falls back to the Home Assistant friendly name when no rename is configured.friendly_nameβ sorts by the entity's original Home Assistant friendly name, unaffected by anyrename:configuration.
reverse:Set totrueto reverse the order. Default:false.ignore_case:Set totrueto make the sort case-insensitive. Default:false.numeric:Set totrueto sort by numeric value. Default:falseexcept forlast_changed,last_updatedandlast_triggeredsorting methods.ip:Set totrueto sort IP addresses group by group (e.g. 192.168.1.2 will be before 192.168.1.100).attribute:Attribute to sort by ifmethod: attribute. Can be an object attribute as above (e.g.attribute: rgb_color:2)firstandcountcan be used to only display<count>entities, starting with the<first>(starts with 0).
To sort by multiple criteria (e.g. primary sort by domain, secondary sort by name as a tiebreaker), supply an array of sort configs. The entities are first ordered by the first sort config; when two entities compare equal on that level, the next sort config is used, and so on.
Note
Multiple sort levels must be configured in the CODE EDITOR. The GUI editor will show an info message when an array is detected.
sort:
- method: domain
- method: friendly_name
ignore_case: truefirst and count pagination, when used with a multi-level sort array, are taken from the first element in the array:
sort:
- method: last_changed
reverse: true
count: 10 # show only the 10 most recently changed
- method: friendly_name
ignore_case: trueIn the options: option of the filters, the string this.entity_id will be replaced with the matched entity_id. Useful for service calls - see below.
Show all entities, except yahoo weather, groups and zones in a glance card:
type: custom:auto-entities
card:
type: glance
filter:
include: [{}]
exclude:
- entity_id: "*yweather*"
- domain: group
- domain: zoneShow all gps device_trackers with battery level less than 50:
type: custom:auto-entities
card:
type: entities
title: Battery warning
filter:
include:
- domain: device_tracker
options:
secondary_info: last-changed
attributes:
battery: "< 50"
source_type: gpsShow all lights that are on:
type: custom:auto-entities
show_empty: false
card:
type: glance
title: Lights on
filter:
include:
- domain: light
state: "on" # Remember that "on" and "off" are magic in yaml, and must always be quoted
options:
tap_action:
action: toggleAlso show all lights that are on, except the hidden ones:
type: custom:auto-entities
show_empty: false
card:
type: entities
title: Lights on
show_header_toggle: false
filter:
include:
- domain: light
exclude:
- state: "off"
- state: "unavailable"
- hidden_by: "user"Show everything that has "light" in its name, but isn't a light, and all switches in the living room:
type: custom:auto-entities
card:
type: entities
title: Lights on
show_header_toggle: false
filter:
include:
- name: /[Ll]ight/
not:
domain: light
- type: section
- domain: switch
area: Living RoomList every sensor belonging to any iPhone:
type: custom:auto-entities
card:
type: entities
title: Phones
show_header_toggle: false
filter:
include:
- device: /iPhone/List the five last triggered motion sensors:
type: custom:auto-entities
card:
type: entities
filter:
include:
- domain: binary_sensor
attributes:
device_class: motion
sort:
method: last_changed
reverse: true
count: 5Put all sensors in individual entity cards in a grid card:
type: custom:auto-entities
card:
type: grid
card_param: cards
filter:
include:
- domain: sensor
options:
type: entityTurn on scenes by clicking them:
type: custom:auto-entities
card:
type: glance
filter:
include:
- domain: scene
options:
tap_action:
action: call-service
service: scene.turn_on
service_data:
# Note the magic value this.entity_id here
entity_id: this.entity_idExample using templates:
type: custom:auto-entities
card:
type: entities
filter:
template: |
{% for light in states.light %}
{% if light.state == "on" %}
{{ light.entity_id}},
{% endif %}
{% endfor %}Or:
template: "{{states.light | selectattr('state', '==', 'on') | map(attribute='entity_id') | list}}"Templates also give great opportunity for customization:
type: custom:auto-entities
card:
type: entities
filter:
template: |
[{% for e in area_entities("bedroom") %}
{'entity': '{{e}}',
'name': 'Lamp at {{device_attr(e, "name").removesuffix("Light").removesuffix("Lights")}}',
},
{% endfor %}]