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

i want to transfer the data for every one minute. how to do this ? what function to be used ?

Hi.....

i want to transfer the data for every one minute from peripheral device to phone  (nrf connect ).. how to declare in the program and what function to be used ?

suggest me a idea 

i am using segger (sdk 12.3 version) . debugging the program to peripheral through my development kit nrf52382

Parents Reply Children
  • yes , but i have used arduino only .  i want to modify the heart rate(hts program) in that i want to include the timer. To read the data for every one minute . please help 

  • As @awneil said, you will have to merge things from two different projects. I suggest you start with a BLE example, such as ble_app_hrs if you need to send heart rate data, or the ble_app_uart if you want to send custom data. Then look at the app_timer example, and try to add a timer from this example into the ble_app_uart example.

    One fall pit that I think I should warn you about is that the app_timer example uses TIMER0, in most SDK versions. This timer is reserved for the softdevice, so switch to TIMER1.

    Best of luck,

    Edvin

Related