Class HeartRateMonitorBatchData

Definition

Namespace:
Tizen.Sensor
Assembly:
Tizen.Sensor.dll
API Level:
8

The HeartRateMonitorBatchData class stores the value of HeartRateMonitorBatch sensor.

C#
Copy
public class HeartRateMonitorBatchData : BatchData
Inheritance
System.Object
HeartRateMonitorBatchData

Constructors

View Source

HeartRateMonitorBatchData(UInt64, SensorDataAccuracy, HeartRateMonitorBatchState, Int32, Int32)

Initializes a new instance of the HeartRateMonitorBatchData class.

Declaration
C#
Copy
public HeartRateMonitorBatchData(ulong timestamp, SensorDataAccuracy accuracy, HeartRateMonitorBatchState state, int heartRate, int rri)
Parameters
Type Name Description
System.UInt64 timestamp

Timestamp of HeartRateMonitorBatch sensor event.

SensorDataAccuracy accuracy

Sensor accuracy of HeartRateMonitorBatch sensor event.

HeartRateMonitorBatchState state

Value indicating the status of the HeartRateMonitorBatch sensor.

Int32 heartRate

heartRate of HeartRateMonitorBatch sensor event.

Int32 rri

rri of HeartRateMonitorBatch sensor event.

API Level: 8

Properties

View Source

HeartRate

Heart rate in beats per minute

Declaration
C#
Copy
public int HeartRate { get; }
Property Value
Type Description
Int32

HeartRate

API Level: 8
View Source

RRInterval

Gets the value of R wave-to-R wave interval(RRI) from ECG sensor. The unit of the interval is millisecond.

Declaration
C#
Copy
public int RRInterval { get; }
Property Value
Type Description
Int32

RRInterval

API Level: 8
View Source

State

Gets the value of the HeartRateMonitorBatch state.

Declaration
C#
Copy
public HeartRateMonitorBatchState State { get; }
Property Value
Type Description
HeartRateMonitorBatchState

State

API Level: 8