Share via


Compass.Start Method

Definition

Overloads

Start(SensorSpeed)

Start monitoring for changes to the compass.

Start(SensorSpeed, Boolean)

Start monitoring for changes to the compass.

Start(SensorSpeed)

Source:
Compass.shared.cs
Source:
Compass.shared.cs

Start monitoring for changes to the compass.

public:
 static void Start(Microsoft::Maui::Devices::Sensors::SensorSpeed sensorSpeed);
public static void Start (Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed);
static member Start : Microsoft.Maui.Devices.Sensors.SensorSpeed -> unit
Public Shared Sub Start (sensorSpeed As SensorSpeed)

Parameters

sensorSpeed
SensorSpeed

The speed to monitor for changes.

Remarks

Will throw FeatureNotSupportedException if not supported on device. Will throw InvalidOperationException if IsMonitoring is true.

Applies to

Start(SensorSpeed, Boolean)

Source:
Compass.shared.cs
Source:
Compass.shared.cs

Start monitoring for changes to the compass.

public:
 static void Start(Microsoft::Maui::Devices::Sensors::SensorSpeed sensorSpeed, bool applyLowPassFilter);
public static void Start (Microsoft.Maui.Devices.Sensors.SensorSpeed sensorSpeed, bool applyLowPassFilter);
static member Start : Microsoft.Maui.Devices.Sensors.SensorSpeed * bool -> unit
Public Shared Sub Start (sensorSpeed As SensorSpeed, applyLowPassFilter As Boolean)

Parameters

sensorSpeed
SensorSpeed

The speed to monitor for changes.

applyLowPassFilter
Boolean

Whether or not to apply a moving average filter (only used on Android).

Remarks

Will throw FeatureNotSupportedException if not supported on device. Will throw InvalidOperationException if IsMonitoring is true.

Applies to