BA / SerialCom

Fork of OmniWheels by Gustav Atmel

Committer:
gustavatmel
Date:
Tue May 01 15:47:08 2018 +0000
Revision:
1:9c5af431a1f1
sdf

Who changed what in which revision?

UserRevisionLine numberNew contents of line
gustavatmel 1:9c5af431a1f1 1 # BLE API {#mainpage}
gustavatmel 1:9c5af431a1f1 2
gustavatmel 1:9c5af431a1f1 3 The BLE module within mbed OS offers a high abstraction level for using
gustavatmel 1:9c5af431a1f1 4 Bluetooth Low Energy on multiple platforms.
gustavatmel 1:9c5af431a1f1 5
gustavatmel 1:9c5af431a1f1 6 This documentation describes the internal structure of the mbed
gustavatmel 1:9c5af431a1f1 7 [BLE API](https://github.com/armmbed/ble).
gustavatmel 1:9c5af431a1f1 8
gustavatmel 1:9c5af431a1f1 9 For getting started with BLE on mbed, check our [introduction
gustavatmel 1:9c5af431a1f1 10 page](https://docs.mbed.com/docs/ble-intros/en/latest/).
gustavatmel 1:9c5af431a1f1 11
gustavatmel 1:9c5af431a1f1 12 For mbed OS examples using BLE, check [this
gustavatmel 1:9c5af431a1f1 13 repository](https://github.com/armmbed/ble-examples). For mbed-classic
gustavatmel 1:9c5af431a1f1 14 examples, please refer to [code under mbed.org](https://developer.mbed.org/teams/Bluetooth-Low-Energy/code/).
gustavatmel 1:9c5af431a1f1 15
gustavatmel 1:9c5af431a1f1 16 ## Supported Services
gustavatmel 1:9c5af431a1f1 17
gustavatmel 1:9c5af431a1f1 18 Currently supported reference services include:
gustavatmel 1:9c5af431a1f1 19
gustavatmel 1:9c5af431a1f1 20 * [Battery](@ref BatteryService)
gustavatmel 1:9c5af431a1f1 21 * [Device Firmware Update (DFU)](@ref DFUService)
gustavatmel 1:9c5af431a1f1 22 * [Device Information](@ref DeviceInformationService)
gustavatmel 1:9c5af431a1f1 23 * [Health Thermometer](@ref HealthThermometerService)
gustavatmel 1:9c5af431a1f1 24 * [Heart Rate](@ref HeartRateService)
gustavatmel 1:9c5af431a1f1 25 * [UART](@ref UARTService)
gustavatmel 1:9c5af431a1f1 26 * [UriBeacon](@ref URIBeaconConfigService)
gustavatmel 1:9c5af431a1f1 27 * [iBeacon](@ref iBeacon)
gustavatmel 1:9c5af431a1f1 28
gustavatmel 1:9c5af431a1f1 29 The [documentation](https://docs.mbed.com/docs/ble-intros/en/latest/AdvSamples/Overview/)
gustavatmel 1:9c5af431a1f1 30 contains an overview on how to create new, application-specific services.