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

Connecting the nRF9160DK to the nRF52833 over Bluetooth

Hi,

I would like to set up a couple of boards communicating over Bluetooth; I was hoping someone could provide some pointers.

I would like to connect the nRF9160DK to the nRF52833DK. 

I have programmed the nRF52 on the nRF9160DK with the HCI UART code and the nRF9160 with the LTE_BLE_Gateway code. 

Is this correct?

What should I program the nRF52833 with?

Thanks,

Rod

Parents Reply
  • Hi Rod, 

    Here's an update from my part. I was able to get the HIDS examples to run. 

    From lte_ble_gateway copy the overlay file to the central_hids folder.

    In central_hids/prj.conf add the following lines:

    CONFIG_BT_H4=y
    CONFIG_BT_WAIT_NOP=y
    CONFIG_MAIN_STACK_SIZE=8192

    Compile for nRF9160dk_nrf9160ns and program the central_hids to nRF9160DK.
    Compile for nRF9160dk_nrf52840 and program the hci_uart to nRF9160Dk (remember to switch 5 on the board to nRF52)
     
    And on the nRF52833DK program the peripheral_hids_keyboard sample.
    Let me know how it works for you

    Kind regards,
    Øyvind
Children
  • Hey Øyvind,

    That worked!!!!!! Excellent, thank you. So, when I press button 1 on the nRF52833 I send "hello" to the nRF9160DK. 

    I recompliled this targeting the nRF52840 Dongle and this also worked! Unfortunately, I am still unable to see any output from the dongle but when I press the button on the dongle I see "hello" on the nRF9160DK. 

    Thanks again for your support,

    Regards,
    Rod

Related