We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement the Accelerometer API.
This API will allow an application to track the sensor reading from the on-device accelerometer sensor.
Accelerometer
TypedEventHandler<Accelerometer, AccelerometerReadingChangedEventArgs> ReadingChanged
uint ReportInterval { get; set; }
static Accelerometer GetDefault()
AccelerometerReading GetCurrentReading()
AccelerometerReading
double AccelerationX { get; }
double AccelerationY { get; }
double AccelerationZ { get; }
DateTimeOffset Timestamp { get; }
The text was updated successfully, but these errors were encountered:
Helpful links to relevant platform APIs:
Sorry, something went wrong.
No branches or pull requests
Description
Implement the Accelerometer API.
How will this benefit you and others?
This API will allow an application to track the sensor reading from the on-device accelerometer sensor.
What is the expected API coverage?
Accelerometer
Events
TypedEventHandler<Accelerometer, AccelerometerReadingChangedEventArgs> ReadingChanged
Properties
uint ReportInterval { get; set; }
Methods
static Accelerometer GetDefault()
AccelerometerReading GetCurrentReading()
AccelerometerReading
Properties
double AccelerationX { get; }
double AccelerationY { get; }
double AccelerationZ { get; }
DateTimeOffset Timestamp { get; }
The text was updated successfully, but these errors were encountered: