Example of BLE scan/connect/service discovery

Fork of BLE_LEDBlinker by Bluetooth Low Energy

Revision:
6:1730f66fb14d
Parent:
5:3bbad34d1a85
Child:
7:61e2224ec9a0
--- a/main.cpp	Sat Jun 20 23:36:10 2015 +0000
+++ b/main.cpp	Mon Jun 29 06:23:09 2015 +0000
@@ -15,13 +15,13 @@
  */
 
 #include "mbed.h"
-#include "BLE.h"
-#include "DiscoveredCharacteristic.h"
-#include "DiscoveredService.h"
+#include "ble/BLE.h"
+#include "ble/DiscoveredCharacteristic.h"
+#include "ble/DiscoveredService.h"
 
-BLE        ble;
+BLE ble;
+
 DigitalOut alivenessLED(LED1, 1);
-
 bool triggerLedCharacteristic = false;
 DiscoveredCharacteristic ledCharacteristic;