
A simple demo that directly uses BLE library to define service and characteristics
Dependencies: BLE_API mbed nRF51822
Fork of BLE_HeartRate by
Revision 34:44dc6efc0b50, committed 2014-07-08
- Comitter:
- Rohit Grover
- Date:
- Tue Jul 08 11:19:52 2014 +0100
- Parent:
- 33:e63df636d3b2
- Child:
- 35:ba3e3174331a
- Commit message:
- use a declared constant for the Heart-Rate Location characteristic
Changed in this revision
main.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/main.cpp Tue Jul 08 11:18:33 2014 +0100 +++ b/main.cpp Tue Jul 08 11:19:52 2014 +0100 @@ -16,6 +16,7 @@ #include "mbed.h" #include "BLEDevice.h" +#include "ble_hrs.h" BLEDevice ble; DigitalOut led1(LED1); @@ -40,7 +41,7 @@ static uint8_t bpm[2] = {0x00, hrmCounter}; GattCharacteristic hrmRate(GattCharacteristic::UUID_HEART_RATE_MEASUREMENT_CHAR, bpm, sizeof(bpm), sizeof(bpm), GattCharacteristic::BLE_GATT_CHAR_PROPERTIES_NOTIFY); -static uint8_t location = 0x03; /* Finger */ +static uint8_t location = BLE_HRS_BODY_SENSOR_LOCATION_FINGER; GattCharacteristic hrmLocation(GattCharacteristic::UUID_BODY_SENSOR_LOCATION_CHAR, (uint8_t *)&location, sizeof(location), sizeof(location), GattCharacteristic::BLE_GATT_CHAR_PROPERTIES_READ);