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#
Copy
public sealed class Pedometer : Sensor
Inheritance
Pedometer

Constructors

View Source

Pedometer(UInt32)

Initializes a new instance of the Pedometer class.

Declaration
C#
Copy
public Pedometer(uint index = null)
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.

API Level: 3
Privilege Level: public
Privilege: http://tizen.org/privilege/healthinfo
Feature: http://tizen.org/feature/sensor.pedometer

Properties

View Source

CalorieBurned

Gets the calorie burned.

Declaration
C#
Copy
public float CalorieBurned { get; }
Property Value
Type Description
Single

The calorie burned.

API Level: 3
View Source

Count

Returns the number of pedometer sensors available on the device.

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

The count of pedometer sensors.

API Level: 3
View Source

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
Boolean

true if supported; otherwise false.

API Level: 3
View Source

LastSpeed

Gets the last speed.

Declaration
C#
Copy
public float LastSpeed { get; }
Property Value
Type Description
Single

The last speed.

API Level: 3
View Source

LastSteppingFrequency

Gets the last stepping frequency.

Declaration
C#
Copy
public float LastSteppingFrequency { get; }
Property Value
Type Description
Single

The last stepping frequency.

API Level: 3
View Source

LastStepStatus

Gets the last step status.

Declaration
C#
Copy
public PedometerState LastStepStatus { get; }
Property Value
Type Description
PedometerState

The last step status.

API Level: 3
View Source

MovingDistance

Gets the moving distance.

Declaration
C#
Copy
public float MovingDistance { get; }
Property Value
Type Description
Single

The moving distance.

API Level: 3
View Source

RunStepCount

Gets the running step count.

Declaration
C#
Copy
public uint RunStepCount { get; }
Property Value
Type Description
UInt32

The run step count.

API Level: 3
View Source

StepCount

Gets the step count.

Declaration
C#
Copy
public uint StepCount { get; }
Property Value
Type Description
UInt32

The step count.

API Level: 3
View Source

WalkStepCount

Gets the walking step count.

Declaration
C#
Copy
public uint WalkStepCount { get; }
Property Value
Type Description
UInt32

The walk step count.

API Level: 3

Events

View Source

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
EventHandler<PedometerDataUpdatedEventArgs>
API Level: 3

Extension Methods