jgh
Fork of BLE_API by
Diff: ble/services/iBeacon.h
- Revision:
- 1042:21a86ac7f5b1
- Parent:
- 1029:a5d0fec3b17c
- Child:
- 1053:ec4a5b9b254e
--- a/ble/services/iBeacon.h Thu Dec 10 09:15:05 2015 +0000 +++ b/ble/services/iBeacon.h Mon Jan 11 08:51:25 2016 +0000 @@ -21,7 +21,7 @@ /** * @class iBeacon -* @brief iBeacon Service. This sets up a device to broadcast advertising packets to mimic an iBeacon. +* @brief iBeacon Service. This sets up a device to broadcast advertising packets to mimic an iBeacon<br> */ class iBeacon { @@ -56,12 +56,12 @@ uint16_t compID = 0x004C) : ble(_ble), data(uuid, majNum, minNum, txP, compID) { - // Generate the 0x020106 part of the iBeacon Prefix. + // Generate the 0x020106 part of the iBeacon Prefix ble.accumulateAdvertisingPayload(GapAdvertisingData::BREDR_NOT_SUPPORTED | GapAdvertisingData::LE_GENERAL_DISCOVERABLE ); - // Generate the 0x1AFF part of the iBeacon Prefix. + // Generate the 0x1AFF part of the iBeacon Prefix ble.accumulateAdvertisingPayload(GapAdvertisingData::MANUFACTURER_SPECIFIC_DATA, data.raw, sizeof(data.raw)); - // Set advertising type. + // Set advertising type ble.setAdvertisingType(GapAdvertisingParams::ADV_NON_CONNECTABLE_UNDIRECTED); }