I'm doing a Nordic example named "Nordic UART Service Client" (https://infocenter.nordicsemi.com/index.jsp?topic=%2Fsdk_nrf5_v17.0.0%2Fble_sdk_app_blinky.html)
The steps are like bellow
- Compile the BLE NUS Client Example application and program both the SoftDevice and the application on the Central board.
- On the Central board, observe that the BSP_INDICATE_SCANNING state is indicated. This shows that the application is scanning for a NUS service Peripheral.
- Compile the NUS application and program both the SoftDevice and the application on the Peripheral board.
- Observe that the NUS Peripheral is advertising.
- Once the connection is established, the BSP_INDICATE_CONNECTED state is indicated on both boards.
- Now it is possible to send data between the two boards. To do so, send data to one of the boards using the serial port. Observe that the data is displayed on the UART on the other board.
- Disconnect the devices, for example by pressing the Reset Button on the Central board. Observe that the boards automatically reconnect and that it is again possible to send data between the two boards.
I've finished 'till step 5, but can't get the idea how to go through the remaining steps. I've found that I have to use Putty, but exactly how to send data and etc is still not clear to me. Can somebody tell me step by step with details how to go through step 6? Thanks:)