Bluetooth low energy, how to parse R-R Interval value?

前端 未结 5 674
醉梦人生
醉梦人生 2021-01-07 02:18

My application is receiving information from smart heart device. Now i can see pulse value. Could you please help me to parse R-R Interval value? How can i check device supp

5条回答
  •  旧时难觅i
    2021-01-07 02:28

    in @Brabbeldas solution i had to use a different flag to get rri values. but might depend on device used.

    if ((reportData[0] & 0x10) == 0)
    

    instead of

    if ((reportData[0] & 0x04) == 0)
    

提交回复
热议问题