sct1000
sct1000
Airtag detection might be possible, based on the reverse-engineering [here](https://adamcatley.com/AirTag#advertising-data): Byte # | Value | Description -- | -- | -- 0 | 0x1E | Advertising data length: 31 (the...
```(ac & 0xf0) == 0x70``` is checking the "action_code" value of 7 according to that slide, assuming that the packets are using network byte ordering. The updates docs [here](https://github.com/furiousMAC/continuity/blob/master/messages/nearby_info.md) suggest...
I just did a little more digging with the status flags and one iPhone (11 Pro, IOS 14). 0x08 is listed as "Unknown" in the docs [here](https://github.com/furiousMAC/continuity/blob/master/messages/nearby_info.md), but in my...
Okay, here's something interesting: When my iPhone stops broadcasting its Nearby Info messages (0x10) because it's in an app with a WKWebView, it instead starts broadcasting handoff messages (0xc) using...
Here's the current version I'm running with some success. I've decided that a local MacOS device broadcasting handoff messages is 'active' too and counts as a valid signal for room...
Looking at this again, my code for recording the closest RSSI is, of course, total bollocks. :-| `x` is invariant in the loop: The automation callback is executed independently for...