Hello!
Under settings/persons, I have both devices, i.e. a phone and a watch assigned to person Bob to be tracked.
I have 2 sensors on a map card:
type: map
entities:
- entity: person.bob
name: "Bob" # This covers both Bob's phone and watch.
- entity: device_tracker.bob_watch
name: "Bob's watch" # And this covers only his watch.
Or should I rather use it as follows? (as person.bob
covers both devices already)
type: map
entities:
- entity: device_tracker.bob_phone
name: "Bob' phone"
- entity: device_tracker.bob_watch
name: "Bob's watch"
Is there a way to display a little badge in the corner of the respective icon, so the icons (both showing Bob’s avatar) can be better distinguished? (e.g. in case one of the devices is left at home - or anywhere else)
Alternatively, I could create differently looking avatars for 1. Bob/Bob’s phone and 2. Bob’s watch, but I prefer using badges, if possible.
If I am on the wrong track, e.g. that I use these 2 sensors as it is not intended, please also let me know.
Thanks for your help!