Class Pedometer
Definition
- Assembly:
- Tizen.Sensor.dll
The Pedometer Sensor class is used for registering callbacks for the pedometer and getting the pedometer data.
C#
Copy
public sealed class Pedometer : Sensor, IDisposable
- Inheritance
- Implements
-
System.
IDisposable
Constructors
Declaration
C#
Copy
public Pedometer(uint index = 0)
Parameters
Type | Name | Description |
---|---|---|
uint | index | Index. Default value for this is 0. Index refers to a particular pedometer sensor in case of multiple sensors. |
Exceptions
Type | Condition |
---|---|
System. |
Thrown when an invalid argument is used. |
System. |
Thrown when the sensor is not supported. |
System. |
Thrown when the application has no privilege to use the sensor. |
System. |
Thrown when the operation is invalid for the current state. |
Properties
Declaration
C#
Copy
public float CalorieBurned { get; }
Property Value
Type | Description |
---|---|
float | The calorie burned. |
Declaration
C#
Copy
public static int Count { get; }
Property Value
Type | Description |
---|---|
int | The count of pedometer sensors. |
IsSupported
Returns true or false based on whether the pedometer sensor is supported by the device.
Declaration
C#
Copy
public static bool IsSupported { get; }
Property Value
Type | Description |
---|---|
bool |
|
Declaration
C#
Copy
public float LastSpeed { get; }
Property Value
Type | Description |
---|---|
float | The last speed. |
Declaration
C#
Copy
public float LastSteppingFrequency { get; }
Property Value
Type | Description |
---|---|
float | The last stepping frequency. |
Declaration
C#
Copy
public PedometerState LastStepStatus { get; }
Property Value
Type | Description |
---|---|
Pedometer |
The last step status. |
Declaration
C#
Copy
public float MovingDistance { get; }
Property Value
Type | Description |
---|---|
float | The moving distance. |
Declaration
C#
Copy
public uint RunStepCount { get; }
Property Value
Type | Description |
---|---|
uint | The run step count. |
Declaration
C#
Copy
public uint StepCount { get; }
Property Value
Type | Description |
---|---|
uint | The step count. |
Declaration
C#
Copy
public uint WalkStepCount { get; }
Property Value
Type | Description |
---|---|
uint | The walk step count. |
Events
DataUpdated
An event handler for storing the callback functions for the event corresponding to the change in the pedometer sensor data.
Declaration
C#
Copy
public event EventHandler<PedometerDataUpdatedEventArgs> DataUpdated
Event Type
Type | Description |
---|---|
System.EventHandler<TEventArgs><Pedometer |