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

"bike power meter tx" and app on android "ant + plugins service".

Hi I'm very interested in studying this protocol, and I'm testing with nrf52832 kit development, loading the example "bike power meter tx" and app on android "ant + plugins service". When I run the search again from the application I can not find anything. Can you suggest where I'm wrong?

Parents
  • The reason you can not find your power simulator when searching is that the two devices are using different network keys.

    On your phone, the ANT+ plugins service on android will be using the correct ANT+ network key.

    The example provided in the nordic SDK does not have the ANT+ network key provided in the example (because you have first to sign an agreement before getting access to the ANT+ network key).

    In your example the network key is set here:

    softdevice_setup(void)

    err_code = ant_plus_key_set(ANTPLUS_NETWORK_NUM);

    #define ANT_PLUS_NETWORK_KEY    {0, 0, 0, 0, 0, 0, 0, 0}            /**< The ANT+ network key. */

    To get access to the network key you will have to create an account on the www.thisisant.com website, then get access to the correct network key. Then modify where it is defined in the example and you should be good.

Reply
  • The reason you can not find your power simulator when searching is that the two devices are using different network keys.

    On your phone, the ANT+ plugins service on android will be using the correct ANT+ network key.

    The example provided in the nordic SDK does not have the ANT+ network key provided in the example (because you have first to sign an agreement before getting access to the ANT+ network key).

    In your example the network key is set here:

    softdevice_setup(void)

    err_code = ant_plus_key_set(ANTPLUS_NETWORK_NUM);

    #define ANT_PLUS_NETWORK_KEY    {0, 0, 0, 0, 0, 0, 0, 0}            /**< The ANT+ network key. */

    To get access to the network key you will have to create an account on the www.thisisant.com website, then get access to the correct network key. Then modify where it is defined in the example and you should be good.

Children
Related