Hi,
I'm using ble_app_multilink_central to connect different device.In the example, it can connect to the lbs service. If I want it connect the uart service,such as ble_app_uart. Could it make it? How should I do? Thanks.
Hi,
I'm using ble_app_multilink_central to connect different device.In the example, it can connect to the lbs service. If I want it connect the uart service,such as ble_app_uart. Could it make it? How should I do? Thanks.
Hi,
The BLE Multi-link Example will connect to any advertising peripherals with the name "Nordic_Blinky". After connection, it does a service discovery to look for the LED Button Service. You can change the name of the target by setting m_target_periph_name
, but you will have to change the other functionality of your central to get any functionality from other peripherals.
If you want to connect to devices running the Nordic UART service (NUS), I recommend that you rather have a look at the Nordic UART Service Client example. This can more easily be edited to allow connection to multiple peripherals running NUS.
Best regards,
Jørgen
Hi,
The BLE Multi-link Example will connect to any advertising peripherals with the name "Nordic_Blinky". After connection, it does a service discovery to look for the LED Button Service. You can change the name of the target by setting m_target_periph_name
, but you will have to change the other functionality of your central to get any functionality from other peripherals.
If you want to connect to devices running the Nordic UART service (NUS), I recommend that you rather have a look at the Nordic UART Service Client example. This can more easily be edited to allow connection to multiple peripherals running NUS.
Best regards,
Jørgen