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