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

Nrf Connect App

After changing the Rx Charecteristics UUID, Nrf Connect App it is showing the LED  BUTTON SERVICE. Why ? I want to write the hex data as previously.

  • In ble_lbs.h you can find the UUID that the example use by default, I suggest that if you want to make you own application you change LBS_UUID_BASE to something else:

    // change these parameters
    #define LBS_UUID_BASE        {0x23, 0xD1, 0xBC, 0xEA, 0x5F, 0x78, 0x23, 0x15, \
                                  0xDE, 0xEF, 0x12, 0x12, 0x00, 0x00, 0x00, 0x00}
    #define LBS_UUID_SERVICE     0x1523
    #define LBS_UUID_BUTTON_CHAR 0x1524
    #define LBS_UUID_LED_CHAR    0x1525
    

Related