Hi,
How to filter only my beacon's based on UUID in ble_app_uart_c?
I need to scan and display only my devices
Hi,
How to filter only my beacon's based on UUID in ble_app_uart_c?
I need to scan and display only my devices
The ble_app_uart_c example does this through the scanning module (nrf_be_scan.c), and the function nrf_ble_scan_filter_set() is used to which UUID's that should pass through the filter. You simpy set the second argument to SCAN_UUID_FILTER, and pass in the UUID's.
See this answer for a detailed explanation of how the scan filtering works.
Best regards,
Simon