语言

Menu
Sites
Language
Gear 2 heart rate frequency

I am trying to find which is the heart rate frequency in the Samsung Gear 2 device. Anyone familiar with this information?

响应

3 回复
John Ixion

HumanActivityHRMData

https://developer.tizen.org/dev-guide/2.3.0/org.tizen.web.apireference/html/device_api/wearable/tizen/humanactivitymonitor.html#HumanActivityHRMData

AVSukhov

Hello,

I think that value rRInterval the time of the most recent interval (and updated every heartbeat).

Gunwang Jeong

Hello,

May be you are looking for Motion API that is provided to Gear 2 in Tizen SDK for Wearable 1.0.0.

 

Download Tizen SDK for Wearable 1.0.0

https://developer.tizen.org/downloads/tizen-sdk?langswitch=en#wearable

 

API reference

Help - Help Contents - Tizen Wearable Web App Programming - API References - Device API Reference - System - Motion

 

Tutorials

Help - Help Contents - Tizen Wearable Web App Programming - Tutorials - Device API Tutorials - System Tutorials - Motion Tutorial - Activating Motion Notifications

 

Please refer below code

function onchangedCB(hrmInfo) 
{
    console.log("Heart rate: " + hrmInfo.heartRate);
    console.log("R-R interval: " + hrmInfo.rRInterval);
}
webapis.motion.start("HRM", onchangedCB);