This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

To display uuid, major,minor values and company identifier using Ble_app_proximity example

i am not able display uuid, major,minor values and company identifier(so that we can change the beacon identification to ibeacon)  using Ble_app_proximity example. please say the specific steps to display these.

Parents Reply
  • You should modify the following defines to match your beacon UUID, minor, major, and company ID:

    #define APP_COMPANY_IDENTIFIER          0x004C                             
    #define APP_MAJOR_VALUE                 0x00, 0x02                         
    #define APP_MINOR_VALUE                 0x00, 0x02                         
    #define APP_BEACON_UUID                 0x01, 0x12, 0x23, 0x34, \
                                            0x45, 0x56, 0x67, 0x78, \
                                            0x89, 0x9a, 0xab, 0xbc, \
                                            0xcd, 0xde, 0xef, 0xf0  

    Also make sure that USE_UICR_FOR_MAJ_MIN_VALUES is not defined in your project. Are you able to get the ble_app_beacon example to advertise your desired beacon data?

Children
Related