Hi everyone
I have BLE tracker gateway (not ESPHome) that sends all detected devices to MQTT in JSON format.
This is an example that I am currently working with:
{
"v": 1,
"mid": 23739,
"time": 1629005825,
"ip": "192.168.1.118",
"mac": "94B97E56838C",
"devices": [
[
2,
"73A84CAA68EA",
-73,
"1AFF4C000215B722B840712C40779CB70AEE0E06900000640001C5"
],
[
2,
"7C26FFE8A115",
-71,
"1AFF4C0002157A527466E3C943E7B0A8E8654AD2C0AC00640001C5"
]
]
}
The long string UUID of my HA beacon that the phone sends (or any beacon for that matter).
How can I match it to a device that is tracked (each one of my 3 phones in the house)?
Just have no idea how to work with this sort of data. BLE tracker device sends all the devices it detected at that moment. So could be either one or many.