Hello, I want to build a list of available BLE devices and show the device names to the user via a display (pretty normal BLE search). The search shall be done for devices with the same base uuid. I started with the example "ble_app_uart_c_S120". I was able to change the project, so that the search is done for the base UUID I want to. But now, the project direcly connects to the device that is found. Do I need to connect to a device, to get the the device name? The device name should be sent by the advertising packages. So a connection should not be needed!? Where can I get the advertising data after starting the search with "scan_start();"? Especially, if there are more than one device on-air with the same base uuid?
Thanks and best regards, BTprogrammer
PS: I am using nRF51822 with S120 softdevice of course, in central role.
[Edit:]
I found this tutorial here: central tutorial
Now I tried to read out the data from p_adv_report->data[i]. But I didn`t find the advertised device name. Is it stored in that data field?