Hello,
I’m currently making a workout and track timing system for a side project. The system will automatically lap your Garmin watch as you cross the finish line, using a Raspberry Pi to track the times of everyone. Essentially it is a normal race timing system but instead of RFID chips, the garmin watches will record the laps and end times. Both the Garmin watches and the Raspberry Pi system will record the runner metrics, so everyone gets instant results of their own times after finishing, while the race or workout official gets to see all the splits and times of everyone on the Raspberry Pi system. I already have the Pi project developed, however, I need the simplest way to broadcast a BLE message from a Garmin watch with a specific UUID.
Here’s the setup I’m working with:
- 8 runners (one for each track lane), each with a designated UUID.
- The Raspberry Pi will scan for only those 8 specific UUIDs.
- I do not need pairing or connecting to anything—just broadcasting a message with a UUID that acts as a runner ID or bib number.
- The Raspberry Pi will listen for those 8 signals and use RSSI to detect when the watches come into close proximity, automatically lap the system, and record a time. This will eliminate the need for manual lapping while still capturing the watch metrics.
- A data field will be the Connect IQ software responsible for broadcasting the Runner ID data. If necessary I can switch to an app, whatever is easier.
- While RSSI may not be extremely accurate, I expect an accuracy of a quarter second or even worse, this is not of utmost importance as this is a prototype and really just a proof of concept (but I still plan on using it!).
I’m very new to Monkey C (I know next to nothing), and the BLE tutorials on the Garmin Developer site are a bit complex for what I’m trying to do. I've seen the raspberry pi project done by
Jim Miller, but I looked at the code and knew it was way too much for me to learn in a short period of time.
I don’t need anything fancy—just a way to broadcast a UUID from a Garmin Forerunner or other watch, preferrably at a high frequency (10Hz or faster, I have no idea the packet send rate is on any specific watch though I expect it is different per watch model).
Any help is greatly appreciated.
Thanks