Adding extra entity value to person tile card

I have a tile card set to a person entity which displays as follows.

This is great and shows my GPS location but I would also like to show the room I’m in. How can I add an extra entity value for my bluetooth le tracker (sensor.andy_s_apple_watch_bluetooth_area)?

type: tile
entity: person.andy
show_entity_picture: true
state_content: state
vertical: false
features_position: bottom

Thanks!

You could probably use card mod for this. I use it to replace the word “home” in the weather card with my geolocated city/state.

In my case…

- type: weather-forecast
    entity: weather.forecast_home
    show_current: true
    show_forecast: true
    forecast_type: daily
    forecast_slots: 7
    name: " "
    grid_options:
      columns: 12
      rows: 3.5
    card_mod:
      style: |
        .name:before {
            content: {% if (states('sensor.geolocator_city')) %}"{{states('sensor.geolocator_city')}}"{% endif %}", {{states('sensor.geolocator_state')}}";
        }

In your case, you could probably do an “:after” after your person state.

Amazing, thanks

1 Like

Nice work!