다음을 통해 공유


Compass 클래스

정의

나침반 센서를 나타냅니다.

이 센서는 마그네틱 노스와 트루 노스에 대한 제목을 반환합니다. (후자는 시스템 기능에 따라 달라집니다.)

구현의 예는 나침반 샘플을 참조하세요.

public ref class Compass sealed
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 65536)]
/// [Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
/// [Windows.Foundation.Metadata.Threading(Windows.Foundation.Metadata.ThreadingModel.Both)]
class Compass final
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 65536)]
[Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
[Windows.Foundation.Metadata.Threading(Windows.Foundation.Metadata.ThreadingModel.Both)]
public sealed class Compass
Public NotInheritable Class Compass
상속
Object Platform::Object IInspectable Compass
특성

Windows 요구 사항

디바이스 패밀리
Windows 10 (10.0.10240.0에서 도입되었습니다.)
API contract
Windows.Foundation.UniversalApiContract (v1.0에서 도입되었습니다.)

설명

센서 데이터는 디바이스의 고정 센서 좌표계를 기준으로 제공되며 디스플레이 방향과 독립적입니다. 입력 제어를 위해 센서 데이터를 사용하거나 화면의 요소를 조작하는 애플리케이션의 경우 개발자는 현재 디스플레이 방향을 고려하여 데이터를 적절하게 보정해야 합니다. 센서 좌표계에 대한 자세한 내용은 센서 데이터 및 디스플레이 방향을 참조하세요.

다음 예제에서는 XAML 및 C#으로 빌드된 UWP 앱이 GetDefault 메서드를 사용하여 나침반에 대한 연결을 설정하는 방법을 보여 줍니다. 통합된 나침반을 찾을 수 없는 경우 메서드는 null 값을 반환합니다.

_compass = Compass.GetDefault();

다음 예제에서는 XAML로 빌드된 UWP 앱이 ReadingChanged 이벤트 처리기를 등록하는 방법을 보여 줍니다.

private void ScenarioEnable(object sender, RoutedEventArgs e)
{
    if (_compass != null)
    {
        // Establish the report interval
        _compass.ReportInterval = _desiredReportInterval;

        Window.Current.VisibilityChanged += new WindowVisibilityChangedEventHandler(VisibilityChanged);
        _compass.ReadingChanged += new TypedEventHandler<Compass, CompassReadingChangedEventArgs>(ReadingChanged);

        ScenarioEnableButton.IsEnabled = false;
        ScenarioDisableButton.IsEnabled = true;
    }
    else
    {
        rootPage.NotifyUser("No compass found", NotifyType.StatusMessage);
    }
}

다음 예제에서는 ReadingChanged 이벤트 처리기를 보여줍니다.

async private void ReadingChanged(object sender, CompassReadingChangedEventArgs e)
{
    await Dispatcher.RunAsync(CoreDispatcherPriority.Normal, () =>
    {
        CompassReading reading = e.Reading;
        ScenarioOutput_MagneticNorth.Text = String.Format("{0,5:0.00}", reading.HeadingMagneticNorth);
        if (reading.HeadingTrueNorth != null)
        {
            ScenarioOutput_TrueNorth.Text = String.Format("{0,5:0.00}", reading.HeadingTrueNorth);
        }
        else
        {
            ScenarioOutput_TrueNorth.Text = "No data";
        }
    });
}

버전 기록

Windows 버전 SDK 버전 추가된 값
1709 16299 FromIdAsync
1709 16299 GetDeviceSelector
1709 16299 MaxBatchSize
1709 16299 ReportLatency
2004 19041 ReportThreshold

속성

DeviceId

디바이스 식별자를 가져옵니다.

MaxBatchSize

센서에서 일괄 처리할 수 있는 최대 이벤트 수를 가져옵니다.

MinimumReportInterval

나침반에서 지원하는 최소 보고서 간격을 가져옵니다.

ReadingTransform

센서 데이터에 적용해야 하는 변환을 가져오거나 설정합니다. 적용할 변환은 센서 데이터를 정렬할 디스플레이 방향과 연결됩니다.

ReportInterval

나침반의 현재 보고서 간격을 가져오거나 설정합니다.

ReportLatency

센서 정보의 일괄 처리 사이의 지연을 가져오거나 설정합니다.

ReportThreshold

나침반 센서의 CompassDataThreshold를 가져옵니다 .

메서드

FromIdAsync(String)

식별자에서 센서를 비동기적으로 가져옵니다.

GetCurrentReading()

현재 나침반 읽기를 가져옵니다.

GetDefault()

기본 나침반을 반환합니다.

GetDeviceSelector()

디바이스 선택기를 가져옵니다.

이벤트

ReadingChanged

나침반이 새 센서 판독값을 보고할 때마다 발생합니다.

적용 대상

추가 정보