iBeacon example code for Delta module

To test with this example, please download nRF Beacon app (available both iOS and Android). In the nRF Beacon app, add beacon by pressing the "+" and then select " Add Another Beacon". You need to select the UUID as 0x0112233445566778899aabbccddeeff0, major value 0x1122 and minor value 0x3344. These are the default [UUID, major value, minor value] settings in this example.

Revision:
1:1ded0f22e084
Parent:
0:9a65d0b6f172
--- a/main.cpp	Thu Mar 02 08:18:44 2017 +0000
+++ b/main.cpp	Thu Mar 16 03:30:28 2017 +0000
@@ -30,14 +30,14 @@
     
     /**
      * The Beacon payload has the following composition:
-     * 128-Bit / 16byte UUID = E2 0A 39 F4 73 F5 4B C4 A1 2F 17 D1 AD 07 A9 61
+     * 128-Bit / 16byte UUID = 01122334-4556-6778-899A-ABBCCDDEEFF0
      * Major/Minor  = 0x1122 / 0x3344
      * Tx Power     = 0xC8 = 200, 2's compliment is 256-200 = (-56dB)
      *
      * Note: please remember to calibrate your beacons TX Power for more accurate results.
      */
-    const uint8_t uuid[] = {0xE2, 0x0A, 0x39, 0xF4, 0x73, 0xF5, 0x4B, 0xC4,
-                            0xA1, 0x2F, 0x17, 0xD1, 0xAD, 0x07, 0xA9, 0x61};
+    const uint8_t uuid[] = {0x01, 0x12, 0x23, 0x34, 0x45, 0x56, 0x67, 0x78,
+                            0x89, 0x9A, 0xAB, 0xBC, 0xCD, 0xDE, 0xEF, 0xF0};
     uint16_t majorNumber = 1122;
     uint16_t minorNumber = 3344;
     uint16_t txPower     = 0xC8;