Demo Glucose Service

Dependencies:   BLE_API mbed nRF51822

Fork of BLE_HeartRate by Bluetooth Low Energy

BLE_Glucose_demo implements the Glucose Service which enables a collector device to connect and interact with.

There is a brief sample code edited with Android Studio for demo this BLE_Glucose_demo example, and it is public on github, everyone can clone it by this URL: https://github.com/Marcomissyou/BluetoothLeGlucose.git. It is convenient for you to development your BLE idea.

There is also provided apk file so you can download and install it directly then demo this code, but make sure your Android phone supports Bluetooth 4.0. /media/uploads/Marcomissyou/bleglucoseservice.apk

Revision:
41:9cef0129da5f
Parent:
40:e73130c6f2bb
Child:
42:06ebef2e0e44
--- a/main.cpp	Fri Aug 22 15:04:49 2014 +0000
+++ b/main.cpp	Tue Sep 02 16:17:18 2014 +0000
@@ -35,7 +35,7 @@
 static const uint16_t uuid16_list[]        = {GattService::UUID_HEART_RATE_SERVICE};
 static volatile bool  triggerSensorPolling = false;
 
-void disconnectionCallback(Gap::Handle_t handle)
+void disconnectionCallback(Gap::Handle_t handle, Gap::DisconnectionReason_t reason)
 {
     DEBUG("Disconnected handle %u!\n\r", handle);
     DEBUG("Restarting the advertising process\n\r");
@@ -71,7 +71,7 @@
     ble.startAdvertising();
 
     uint8_t hrmCounter = 100;
-    HeartRateService hrService(ble, hrmCounter, HeartRateService::BLE_HRS_BODY_SENSOR_LOCATION_FINGER);
+    HeartRateService hrService(ble, hrmCounter, HeartRateService::LOCATION_FINGER);
 
     while (true) {
         if (triggerSensorPolling) {