ATTEMPT TO SEND EXTRA DATA IN IBEACON FORMAT?

I am new in nrf52832 field i am trying to send some customized data(scan response) in ibeacon format of advertising. suggest me some ways or code to do the same

Thankyou in advance

Parents
  • Hi Piyush, 

    Which SDK are you using ? 
    If you use NCS  SDK you can try testing with the \zephyr\samples\bluetooth\ibeacon example. 
    You can add the scan response data, similar to the advertising data: 

    err = bt_le_adv_start(BT_LE_ADV_NCONN, ad, ARRAY_SIZE(ad),
                      ad2, ARRAY_SIZE(ad2));
    Note that you need to use Apple Company ID in your manufacturer data (0x4c)
Reply
  • Hi Piyush, 

    Which SDK are you using ? 
    If you use NCS  SDK you can try testing with the \zephyr\samples\bluetooth\ibeacon example. 
    You can add the scan response data, similar to the advertising data: 

    err = bt_le_adv_start(BT_LE_ADV_NCONN, ad, ARRAY_SIZE(ad),
                      ad2, ARRAY_SIZE(ad2));
    Note that you need to use Apple Company ID in your manufacturer data (0x4c)
Children
Related