Official Sheffield ARMBand micro:bit program

Committer:
MrBedfordVan
Date:
Mon Oct 17 12:41:20 2016 +0000
Revision:
0:b9164b348919
Official Sheffield ARMBand Micro:bit program

Who changed what in which revision?

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