Includes library modifications to allow access to AIN_4 (AIN_0 / 5)

Committer:
bryantaylor
Date:
Tue Sep 20 21:26:12 2016 +0000
Revision:
0:eafc3fd41f75
hackathon

Who changed what in which revision?

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