Hello Everyone,
I am looking for an Eddystone example. It should be used for an nrf52 with s132 SoftDevice (programming with nrf52 Prev Dev Kit).
Thanks for help
Hello Everyone,
I am looking for an Eddystone example. It should be used for an nrf52 with s132 SoftDevice (programming with nrf52 Prev Dev Kit).
Thanks for help
You can find an Eddystone example for the PCA10036 (nRF52 Preview DK) under
<nRF5_SDK_v11_0_0 folder>\examples\ble_peripheral\experimental_ble_app_eddystone\
in SDK v11.0.0. You can download the latest SDK from http://developer.nordicsemi.com/ or download it directly using this link.
-Bjørn
Thanks for help.
Now, when I want to make an eddystone_tlm_data. So I have to comment the static uint8_t eddystone_url_data[]
… and take the uint8_t eddystone_tlm_data[]
. After that, I change:
eddystone_data_array.p_data = (uint8_t *) eddystone_tlm_data; // Pointer to the data to advertise.
eddystone_data_array.size = sizeof(eddystone_tlm_data); // Size of the data to advertise.
Is that right?
Thanks for help.
Now, when I want to make an eddystone_tlm_data. So I have to comment the static uint8_t eddystone_url_data[]
… and take the uint8_t eddystone_tlm_data[]
. After that, I change:
eddystone_data_array.p_data = (uint8_t *) eddystone_tlm_data; // Pointer to the data to advertise.
eddystone_data_array.size = sizeof(eddystone_tlm_data); // Size of the data to advertise.
Is that right?