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

Registering a beacon with Google

I have downloaded the Eddystone example to my nRF52832 dev-kit and I am trying to register it with the google beacon platform using their beacons Tools app but it says that the beacon is locked. How do I figure out the unlock key?

  • Hi,

    See this page.

    The lock code (APP_CONFIG_LOCK_CODE) that is required to configure the beacon. Default: FFFFFFFFFFFFFFFF (16 F characters).

    In es_app_config.h you have:

    #define APP_CONFIG_LOCK_CODE {0xFF, 0xFF, 0xFF, 0xFF, \
                                  0xFF, 0xFF, 0xFF, 0xFF, \
                                  0xFF, 0xFF, 0xFF, 0xFF, \
                                  0xFF, 0xFF, 0xFF, 0xFF} //!< Beacon lock code. @warning This lock code must be changed before going to production.
    
Related