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.
C#Copypublic sealed class Pedometer : Sensor, IDisposable
- Inheritance
- Implements
-
System.IDisposable
Constructors
Declaration
C#Copypublic Pedometer(uint index = 0U)
Parameters
Type | Name | Description |
---|---|---|
System.UInt32 | index | Index. Default value for this is 0. Index refers to a particular pedometer sensor in case of multiple sensors. |
Exceptions
Type | Condition |
---|---|
System.ArgumentException | Thrown when an invalid argument is used. |
System.NotSupportedException | Thrown when the sensor is not supported. |
UnauthorizedAccessException | Thrown when the application has no privilege to use the sensor. |
System.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
Declaration
C#Copypublic float CalorieBurned { get; }
Property Value
Type | Description |
---|---|
Single | The calorie burned. |
API Level: 3
Declaration
C#Copypublic static int Count { get; }
Property Value
Type | Description |
---|---|
System.Int32 | The count of pedometer sensors. |
API Level: 3
IsSupported
Returns true or false based on whether the pedometer sensor is supported by the device.
Declaration
C#Copypublic static bool IsSupported { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
API Level: 3
Declaration
C#Copypublic float LastSpeed { get; }
Property Value
Type | Description |
---|---|
Single | The last speed. |
API Level: 3
Declaration
C#Copypublic float LastSteppingFrequency { get; }
Property Value
Type | Description |
---|---|
Single | The last stepping frequency. |
API Level: 3
Declaration
C#Copypublic PedometerState LastStepStatus { get; }
Property Value
Type | Description |
---|---|
PedometerState | The last step status. |
API Level: 3
Declaration
C#Copypublic float MovingDistance { get; }
Property Value
Type | Description |
---|---|
Single | The moving distance. |
API Level: 3
Declaration
C#Copypublic uint RunStepCount { get; }
Property Value
Type | Description |
---|---|
System.UInt32 | The run step count. |
API Level: 3
Declaration
C#Copypublic uint StepCount { get; }
Property Value
Type | Description |
---|---|
System.UInt32 | The step count. |
API Level: 3
Declaration
C#Copypublic uint WalkStepCount { get; }
Property Value
Type | Description |
---|---|
System.UInt32 | The walk step count. |
API Level: 3
Events
DataUpdated
An event handler for storing the callback functions for the event corresponding to the change in the pedometer sensor data.
Declaration
C#Copypublic event EventHandler<PedometerDataUpdatedEventArgs> DataUpdated
Event Type
Type | Description |
---|---|
System.EventHandler<PedometerDataUpdatedEventArgs> |