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

nRF Toolbox - BEACONS does not show up beacons in Android

Hi,

I am running the ble_app_beacon example in nRF52 DK (PCA10040). I can see the nRF beacon in nRFConnect app - but not in the nRFToolbox - Beacons. After opening the app, I pressed + button in the bottom right corner and waited for a long time - still no beacons show up.

I have used the following values in the ble_app_beacon code. I made sure that the nRF Toolbox - Beacons had the exact same uuid(6d6e6f70-7172-7374-7576-77-78797a7b7c) , major(32126) and minor (32640) under 'Beacon config'.

#define APP_BEACON_INFO_LENGTH 0x17 /**< Total length of information advertised by the Beacon. */
#define APP_ADV_DATA_LENGTH 0x15 /**< Length of manufacturer specific data in the advertisement. */
#define APP_DEVICE_TYPE 0x02 /**< 0x02 refers to Beacon. */
#define APP_MEASURED_RSSI 0x05 /**< The Beacon's measured RSSI at 1 meter distance in dBm. */
#define APP_COMPANY_IDENTIFIER 0x004C//0x0059 /**< Company identifier for Nordic Semiconductor ASA. as per www.bluetooth.org. */

#define APP_MAJOR_VALUE 0x7d, 0x7e /**< Major value used to identify Beacons. */
#define APP_MINOR_VALUE 0x7f, 0x80 /**< Minor value used to identify Beacons. */

#define APP_BEACON_UUID 0x6d, 0x6e, 0x6f, 0x70, \
0x71, 0x72, 0x73, 0x74, \
0x75, 0x76, 0x77, 0x78, \
0x79, 0x7a, 0x7b, 0x7c /**< Proprietary UUID for Beacon. */

I am using Samsung Galaxy S6 Android Version 5.1.1 Android security patch level : 2015-12-01

How to get the nRF Toolbox - Beacons app to display the major and minor values in the Android app?

Related