Combining auto-entities & multiple-entity-row

Been fighting with this for a minute, bad not making progress…

I’d like to us ‘auto-entites’ and their filters to supply the entities for ‘multiple-entity-row’. Can’t seem to get the syntax right.

Here’s what I’ve got so far:

      - type: vertical-stack
        title: Speakers
        cards:
          - type: custom:auto-entities
            card:
              type: custom:multiple-entity-row
              secondary_info: last-changed
            filter:
              include:
                - domain: device_tracker
                  integration: unifi
                  area: Speakers
              exclude: []
            sort:
              method: friendly_name
            card_param: entity

Which, funny enough, just gives me a blank
image

So how would I pass the filtered auto-entities, into multiple-entity-row?

I’m kind of at a loss, or it’s just not making sense.

Any advice or pointers would be appreciated. Thanks.

If I change the type; from custom:multiple-entity-row to entities it seems to work fine. Was hoping card_param: entity would fix that, but it doesn’t…

I would say that defining entities inside m-e-r by auto-entities is a rather unusual task.

type: custom:auto-entities
card:
  type: custom:multiple-entity-row
  entity: sun.sun
filter:
  include:
    - domain: device_tracker
      integration: mobile_app

Thank you, I’ll give this a try.

Well, I’d like to dynamically feed the multiple-entitty-row card with filtered entities provided by auto-entities; so I can then show secondary info and attribute info from those entities.

Is there a better way to-do this that I’m not aware of?

I’d like to see all the devices in the device_tracker domain, then also show info on when they were last update, and if they are connected to wifi or not (some are not), which is an attribute of of the entities.

This gets close, but doesn’t actually work…

Wouldn’t auto-entities supply the entities for multiple-entity-row?

Go to auto-entities thread (actually, the right place to discuss it), there are examples for multiple-entity-row there.

1 Like