I go on a lot of backcountry trips where I barely get cell service. If my group splits, nobody knows knows where anyone is until you regroup at camp or at your destination. You can buy Garmin radios or try to set up an ATAK, but ATAK is Android-only and assumes you have a TAK Server running somewhere to make use of all of the functionality. Cool tools themselves, but expensive to set up correctly. I just wanted two iPhones to share their location directly over Bluetooth when cell coverage was lacking.
Red Grid Link does that. Start a session, and anyone nearby running the app shows up on your offline map. When they walk out of range their marker stays as a "ghost" that slowly fades.
The hard part was making sync reliable over BLE. The connections drop all the time. Someone turns a corner, walks behind a vehicle, whatever. I built a CRDT sync layer (LWW Register + G-Counter) so there's never merge conflicts. Each update is just under 200 bytes (from what I have tested so far). When a user/teammate disappears the app does exponential backoff from 2 to 30 seconds before giving up and marking them as a ghost.
Everything is encrypted (AES-256-GCM, ECDH P-256 key exchange per peer pair). Sessions can require a PIN or QR code to join. It also offers offline topo maps with MGRS grid coordinates, same system as in my other app, Red Grid MGRS.
The app is free, and I'm looking for some honest feedback from other real-world users. Let me know if you have any questions!
Have you looked at Bluetooth LE Long Range? I believe more recent phones have it and it claims communication of up to 1km. In practice less in the woods I'm sure. Still a dramatic win over standard Bluetooth though.
BLE Coded PHY is on my radar. The theoretical range boost is huge, something like 4x over standard in ideal conditions. The challenge right now is that flutter_blue_plus (the BLE library I'm using) has limited support for negotiating Coded PHY, and both devices need to support it. But phone hardware has been shipping with it since around 2020 so the install base is there. Definitely something I want to add, probably as an automatic upgrade when both peers support it.
It’s not available on iOS devices though, right?
Cool idea, but doesn't Meshtastic already do this but with better range because it uses radio instead of BT?
Meshtastic is great if you're willing to carry extra hardware. Everyone in your group needs a LoRa radio (which can range from $30-50 each), and you need to pair them, flash the firmware, configure channels, etc. For a SAR team or preppers who already own the gear, it's definitely a solid choice.
Red Grid Link was more so for those already carrying their phones and those that don't want to buy anything else. The trade-off is range for convenience. BLE gets you maybe ~50-100m in the open, ~20-60m in densely woooded areas. That's enough to keep tabs on a hunting party spread across a hillside or a hiking group. Absolutely not a replacement for a radio relay across a valley.
Different tools for different problems. If I need a 2km mesh range I'd set up Meshtastic too.
Good points. I like the ghost marker functionality, helps with the shorter-range of BT.
Thanks, yeah the ghost markers ended up being one of those features that came out of necessity. Once I accepted that the BLE range was never going to be amazing, the question became what happens when someone drops off? Felt wrong to just remove them from the map.
This is awesome! Does it have an alert feature? I'm also curious about battery life.
Super cool idea! This would be amazing for Airsoft games
Definitely was one of the use cases I designed around!
Very cool idea. What's the range of BLE connectivity? I can't imagine it gets far
It's not long range by any stretch. The use case is more "my group split up on a trail and I want to know which fork they took" vs "track someone across a mountain." The ghost marker system helps here too. If someone walks out of range, their last known position and direction stays on your map, so you at least know where they're heading and how long ago they traveled that direction.
Isnt the range of Bluetooth pretty much the range of a loud yell?
Haha fair point. In open terrain you get maybe 50-100m which I agree, not far. In practice it's more useful than it sounds though. You don't need miles of range when the point is "where did my buddy go 5 minutes ago." And if they walk out of range their last position and heading stick on your map as a ghost marker so you're not totally blind or left guessing.
This comment got me thinking that it might be worth using their second-to-last location to try and derive some vector. Obviously that's super informative as you already know the edge of the map they left, but maybe it's useful?
Well... I have a hard time imagining to get location by yelling "where are you? " "by the trees!" It really sounds immensely useful to know last location (while they were still in range).
Use case: I was out, picking wild lingonberries in the forest with a group of ~10, some kids. At a "secret" location, with everyone wandering off in a direction they see more of them. Shouting did not help much.