UART-BLE bridge example issue

Tip / Sign in to post questions, reply, level up, and achieve exciting badges. Know more

cross mob
JuRu_3481966
Level 1
Level 1
First like given

I would like to send data over this bridge, but cannot seem to do so. I am able to connect the devices over bluetooth. How do I start the transmission of the UART data from the peripheral to the central device? Any help here is appreciated!

Thank you,

Julian Runyon

0 Likes
1 Solution
SayaniS_66
Moderator
Moderator
Moderator
10 likes received First like received

Hello Julian,

In the GITHUB example project BLE-UART, a custom BLE service – Server_UART – is implemented in the project, which makes use of two custom characteristics:

§  Server_UART_Rx_data: To receive data from any central device via write without response commands.

§  Server_UART_Tx_data: To transmit data to any central device via notifications.

Once the BLE central device is connected to the BLE peripheral device, you can open two UART terminal windows - one for the peripheral device and another for the central device. Now, you can input data in the UART terminal of the peripheral device and see the same being displayed in the UART terminal of the central device.

-Sayani.

View solution in original post

1 Reply
SayaniS_66
Moderator
Moderator
Moderator
10 likes received First like received

Hello Julian,

In the GITHUB example project BLE-UART, a custom BLE service – Server_UART – is implemented in the project, which makes use of two custom characteristics:

§  Server_UART_Rx_data: To receive data from any central device via write without response commands.

§  Server_UART_Tx_data: To transmit data to any central device via notifications.

Once the BLE central device is connected to the BLE peripheral device, you can open two UART terminal windows - one for the peripheral device and another for the central device. Now, you can input data in the UART terminal of the peripheral device and see the same being displayed in the UART terminal of the central device.

-Sayani.