Ram Location from the rest sensor? Person in the UI only allows me to pick my phone, my wife’s phone or my dog’s GPS tracker.
well apparently my memory is off, just use this automation then
- alias: Locate the truck
trigger:
- platform: state
entity_id: sensor.ram_location
attribute: latitude
- platform: state
entity_id: sensor.ram_location
attribute: longitude
action:
- service: device_tracker.see
data:
dev_id: ram
gps: >
{{ [ state_attr('sensor.ram_location' , "latitude"), state_attr('sensor.ram_location' , "longitude") ] }}
Ok that is quite literally the coolest thing I’ve seen.