Class Pedometer
Definition
- Namespace:
- Tizen.Sensor
- Assembly:
- Tizen.Sensor.dll
- API Level:
- 3
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
Constructors
View SourcePedometer(UInt32)
Initializes a new instance of the Pedometer class.
Declaration
public Pedometer(uint index = 0U)
Parameters
Type | Name | Description |
---|---|---|
UInt32 | index | Index. Default value for this is 0. Index refers to a particular pedometer sensor in case of multiple sensors. |
Exceptions
Type | Condition |
---|---|
ArgumentException | Thrown when an invalid argument is used. |
NotSupportedException | Thrown when the sensor is not supported. |
UnauthorizedAccessException | Thrown when the application has no privilege to use the sensor. |
InvalidOperationException | Thrown when the operation is invalid for the current state. |
API Level: 3
Privilege Level: public
Privilege: http://tizen.org/privilege/healthinfo
Feature: http://tizen.org/feature/sensor.pedometer
Properties
View SourceCalorieBurned
Gets the calorie burned.
Declaration
public float CalorieBurned { get; }
Property Value
Type | Description |
---|---|
Single | The calorie burned. |
API Level: 3
View SourceCount
Returns the number of pedometer sensors available on the device.
Declaration
public static int Count { get; }
Property Value
Type | Description |
---|---|
Int32 | The count of pedometer sensors. |
API Level: 3
View SourceIsSupported
Returns true or false based on whether the pedometer sensor is supported by the device.
Declaration
public static bool IsSupported { get; }
Property Value
Type | Description |
---|---|
Boolean |
|
API Level: 3
View SourceLastSpeed
Gets the last speed.
Declaration
public float LastSpeed { get; }
Property Value
Type | Description |
---|---|
Single | The last speed. |
API Level: 3
View SourceLastSteppingFrequency
Gets the last stepping frequency.
Declaration
public float LastSteppingFrequency { get; }
Property Value
Type | Description |
---|---|
Single | The last stepping frequency. |
API Level: 3
View SourceLastStepStatus
Gets the last step status.
Declaration
public PedometerState LastStepStatus { get; }
Property Value
Type | Description |
---|---|
PedometerState | The last step status. |
API Level: 3
View SourceMovingDistance
Gets the moving distance.
Declaration
public float MovingDistance { get; }
Property Value
Type | Description |
---|---|
Single | The moving distance. |
API Level: 3
View SourceRunStepCount
Gets the running step count.
Declaration
public uint RunStepCount { get; }
Property Value
Type | Description |
---|---|
UInt32 | The run step count. |
API Level: 3
View SourceStepCount
Gets the step count.
Declaration
public uint StepCount { get; }
Property Value
Type | Description |
---|---|
UInt32 | The step count. |
API Level: 3
View SourceWalkStepCount
Gets the walking step count.
Declaration
public uint WalkStepCount { get; }
Property Value
Type | Description |
---|---|
UInt32 | The walk step count. |
API Level: 3
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 |
---|---|
EventHandler<PedometerDataUpdatedEventArgs> |