Simple beacon for nRF51822

Dependencies:   BLE_API mbed nRF51822Copy

Fork of BLE_iBeacon by Bluetooth Low Energy

This is the demo beacon for ARM TechCon 2014.

Based on the original library, this demo reads the onboard switches and temperature sensor and beacons them out as a BLE advertisment.

Revision:
43:b5dc3241fc91
Parent:
42:bb46ad5c24dd
Child:
44:6a5d976d6e61
--- a/main.cpp	Tue Aug 12 08:28:45 2014 +0000
+++ b/main.cpp	Tue Sep 02 16:09:59 2014 +0000
@@ -45,14 +45,14 @@
  * Tx Power     = C8
  */
 const uint8_t beaconPayload[] = {
-    0x4C, 0x00, // Company identifier code (0x004C == Apple)
-    0x02,       // ID
-    0x15,       // length of the remaining payload
-    0xE2, 0x0A, 0x39, 0xF4, 0x73, 0xF5, 0x4B, 0xC4, // location UUID
+    0x4C, 0x00,
+    0x02,
+    0x15,
+    0xE2, 0x0A, 0x39, 0xF4, 0x73, 0xF5, 0x4B, 0xC4,
     0xA1, 0x2F, 0x17, 0xD1, 0xAD, 0x07, 0xA9, 0x61,
-    0x00, 0x00, // the major value to differentiate a location
-    0x00, 0x00, // the minor value to differentiate a location
-    0xC8        // 2's complement of the Tx power (-56dB)
+    0x00, 0x00,
+    0x00, 0x00,
+    0xC8
 };
 
 int main(void)