High level Bluetooth Low Energy API and radio abstraction layer

Dependents:   BLE_ANCS_SDAPI BLE_temperature BLE_HeartRate BLE_ANCS_SDAPI_IRC ... more

Overview

The BLE_API is a high level abstraction for using Bluetooth Low Energy on multiple platforms. For details and examples using the BLE_API please see the BLE_API Summary Page. Or click on the API Documentation tab above.

Supported Services

Supported services can be found in the BLE_API/services folder.

Revision:
1140:6502136c48ec
Parent:
1139:911c42364719
Child:
1143:4788b7c9cb49
--- a/ble/services/BatteryService.h	Wed Apr 06 19:13:58 2016 +0100
+++ b/ble/services/BatteryService.h	Wed Apr 06 19:14:03 2016 +0100
@@ -58,7 +58,7 @@
 
 protected:
     /**
-     * A reference to the underlying @ref BLE instance that this object is attached to.
+     * A reference to the underlying BLE instance that this object is attached to.
      * The services and characteristics will be registered in this BLE instance.
      */
     BLE &ble;
@@ -68,8 +68,8 @@
      */
     uint8_t    batteryLevel;
     /**
-     * A @ref ReadOnlyGattCharacteristic that allows access to the peer device to the
-     * @ref batteryLevel value through BLE.
+     * A ReadOnlyGattCharacteristic that allows access to the peer device to the
+     * batteryLevel value through BLE.
      */
     ReadOnlyGattCharacteristic<uint8_t> batteryLevelCharacteristic;
 };