Skip to content

Enable your BLE device to show komoot navigation instructions for cycling, running and outdoor routes

License

Notifications You must be signed in to change notification settings

linusheck/BLEConnect

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

76 Commits
 
 
 
 
 
 
 
 

Repository files navigation

This documentation of the komoot mobile apps BLEConnect interface is outdated. You can find the the most recent documentation linked on the komoot website 👉 here 👈.

BLEConnect

With komoot BLE Connect, you enable your BLE device to show navigation instructions for cycling, running and outdoor routes delivered by komoot Apps for Android and iOS. https://www.komoot.com/b2b/connect

For questions about partnerships and having your device listed in the komoot Apps please contact us: [email protected]

All you need to implement this is found here:

How it works

Connect to komoot App

Pairing on Android (not iOS)

Before a connection can be established, your external BLE device has to be paired (authorized) with the Android OS. Go to the Android Bluetooth settings and pair your device first.

Komoot App

The user activates BLE Connect inside the komoot app settings. When doing so, the app starts advertising the komoot navigation BLE service and tells the user to start pairing via their external BLE device. The komoot app stops advertising once the connection to the characteristic is established.

Your device / what you implement

The external BLE device is responsible to establish the connection and subscribing to the komoot navigation service characteristic. Your device should search for the komoot navigation service (UUID defined below). Otherwise it might be possible that you won’t find the komoot app while the app is in background (not visible on iOS in that case).

Please note: The advertisement data on iOS are different while the app is running in background. For details please check Apple developer documentation.

Receive Navigation Instructions

Komoot App

The komoot app sends instructions data about once per second when a navigation gets started or resumed in the komoot app. The transferred data format is described in detail below.

Your device / what you implement

The komoot app announces new data by updating a BLE characteristic. Once you receive a notification about the change, you have to start a read request on that characteristic to get the data object of the last navigation instruction.

The komoot app delivers up to 22 bytes (iOS) or 20 bytes (Android) with the first response. You can do subsequent read request with shifted offsets (22 iOS, 20 Android) to retrieve more information like the rest of the street name if the street name is too long to fit into the first response. When the komoot app delivers less than 22 bytes (iOS) or 20 bytes (Android), or you get an offset error, or a zero-sized byte array you know that you got the complete Navigation Instruction.

Reconnect and connection status

Komoot App

The komoot app repeats the last navigation instruction every 2 seconds. It observes your read requests, and if there hasn’t been a read request for a longer time (5 sec. ), the app assumes that the connection got lost and will start advertising the service again. Your device configured as a BLE central should then initiate a reconnect.

Your device / what you implement

You have to start scanning for the navigation service once you detect the connection to the peripheral got lost. After a few seconds, the komoot app will start advertising.

BLE Service Specification

UUID Description Access
71C1E128-D92F-4FA8-A2B2-0F171DB3436C GATT Primary Service Declaration Readonly
503DD605-9BCB-4F6E-B235-270A57483026 GATT Characteristic to subscribe for navigation updates Notify, Readonly

Transferred Data

When you read the GATT characteristic after you got notified, you will receive the following data.

Data structure

Identifier

UInt32 value to identify a single navigation instruction. Use this identifier for sending the read request to the characteristic. If we get a read request without this identifier, we will deliver the last data object.

Direction Arrows

The direction will be represented as an UInt8 value. The following list shows the mapping between the image and the corresponding UInt8 value. This list could be extended in future.

You can download the arrows here or make your own design.

Direction Number value Description
No image 0 Reserved
straight 1 Go Straight
start 2 Start
finish 3 Finish
slight left 4 Slight Left
left 5 Left
sharp left 6 Sharp Left
sharp right 7 Sharp Right
right 8 Right
slight right 9 Slight Right
fork right 10 Fork Right
fork left 11 Fork Left
u-turn 12 U-Turn
No image 13 Reserved
No image 14 Reserved
roundabout exit left 15 Roundabout Exit Left
roundabout exit right 16 Roundabout Exit Right
roundabout CCW exit 1-1 17 Roundabout Counter Clockwise Exit 1 of 1
roundabout CCW exit 1-2 18 Roundabout Counter Clockwise Exit 1 of 2
roundabout CCW exit 1-3 19 Roundabout Counter Clockwise Exit 1 of 3
roundabout CCW exit 2-2 20 Roundabout Counter Clockwise Exit 2 of 2
roundabout CCW exit 2-3 21 Roundabout Counter Clockwise Exit 2 of 3
roundabout CCW exit 3-3 22 Roundabout Counter Clockwise Exit 3 of 3
roundabout CW exit 1-1 23 Roundabout Clockwise Exit 1 of 1
roundabout CW exit 1-2 24 Roundabout Clockwise Exit 1 of 2
roundabout CW exit 1-3 25 Roundabout Clockwise Exit 1 of 3
roundabout CW exit 2-2 26 Roundabout Clockwise Exit 2 of 2
roundabout CW exit 2-3 27 Roundabout Clockwise Exit 2 of 3
roundabout CW exit 3-3 28 Roundabout Clockwise Exit 3 of 3
roundabout fallback 29 Roundabout Fallback
left route 30 Out Of Route
No image 31…n We might enhance the table in future versions.

Street

The street is provided as UTF-8 string. The street is starting at byte 21 until the end of the data object.

Distance

The distance is provided in meters. There is no rounding done by the komoot app. Your implementation is responsible to round and convert into the right measurement system.

This is an example how we do rounding in the komoot app:

Distance Range Rounding step Examples
0 - 5 0 Now
6 - * 10 14 -> 10, 15 -> 20

Testing

Android

Use an Android device with the Komoot App to test your BLE Navigation device. To simulate a location track use the Lockito App and start a Navigation with the Komoot App. Before that don't forget to pair your device on Android OS and register it in the Komoot App. Once navigation is started navigation instructions are sent by BLE Connect.

About

Enable your BLE device to show komoot navigation instructions for cycling, running and outdoor routes

Resources

License

Stars

Watchers

Forks

Packages

No packages published