Skip to content

luissancar/BLEConnect

Repository files navigation

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

All you need to implement this is found here:

How it works

Connect to komoot App

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 the first 22 Bytes with the first request. You can do subsequent read request with shifted offsets (22) to retrieve more information if the streetname is long. When the komoot app delivers 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.

The Simulator Apps

To make development easier for you, we created two simulator apps you can find in this repository. Just clone the repository and open the Xcode Project to start the simulators on your iOS device.

Note: Set the signing team in the General tab, if you run the simulator apps with Xcode 8 or above.

KomootAppSimulator  BLEDeviceSimulator
Simulates the behavior of the komoot app. (BLE Peripheral) Simulates a BLE device that receives the BLE Navigation Service. (BLE Central)

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

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

Languages