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

NRF52832 NUS embedded source code

Hi,

I'm trying to communicate the sensor that working with uart (57600 baud rate) with NRF52832 module. I cant find the example project like that. Architecture wil be like this;

Sensor------------------>NRF52832---------------->Mobile Phone
             UART(57600)                            BLE

Can anybody help me on this?

Best regards..

Parents
  • A UART neither knows nor cares what is connected to it - it just sends bytes, and receives bytes.

    So look at the UART examples - they illustrate how to sends bytes out of the UART, and receives bytes into the UART.

    Similarly, transmitting bytes over BLE is not affected by where the bytes came from - they are all just bytes.

    Probably the Nordic UART Service (NUS) example would be a good place to start - as that illustrates both receiving & sending bytes via the hardware UART, and transferring those bytes over BLE to a mobile app ...

Reply
  • A UART neither knows nor cares what is connected to it - it just sends bytes, and receives bytes.

    So look at the UART examples - they illustrate how to sends bytes out of the UART, and receives bytes into the UART.

    Similarly, transmitting bytes over BLE is not affected by where the bytes came from - they are all just bytes.

    Probably the Nordic UART Service (NUS) example would be a good place to start - as that illustrates both receiving & sending bytes via the hardware UART, and transferring those bytes over BLE to a mobile app ...

Children
Related