Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

Reading Ultrabook Sensor Data with the Windows 8 Sensor API

0.00/5 (No votes)
6 Nov 2012 1  
A head start for App Innovation contestants

Introduction

Note: This is not a complete article. It is shared for the purpose of helping App Innovation contestants get started with Ultrabook sensor manipulation. As my schedule allows, I will add detail to the article.

The Windows 8 Sensor API makes communication with the Ultrabook's sensors a snap.

Background

The Ultrabook includes several physical solid-state sensors as well as a few virtual sensors that are abstracted through the API.

How It Works

The application consists of a single-form Windows Forms application that updates the user interface in real-time with current sensor data. A background thread subscribes to sensor class events and collects sensor data. The UI thread updates the UI periodically with the data collected by the sensor thread.

To obtain sensor data, call the static GetDefault() method of the appropriate class, set properties as necessary, and subscribe to available events (ReadingChanged is typically available).

The user interface uses a custom Metro-style-style group-box control.

Points of Interest

  1. I have been unable to get GPS sensor data from the Intel Ultrabook. From what I can tell, it either:
    1. doesn't have GPS or it's not enabled
    2. doesn't have an antenna
    3. doesn't include working drivers
  2. I have been unable to get near-field communication (NFC) working. I have only tried to sense NFC tags (containing the Mifare Ultralight chip).
  3. Use of the API in desktop applications requires a reference to the Windows 8 runtime. This requires a bit of mucking about in Visual Studio.
  4. If Windows 8 is not present, the application will fail with a TypeLoadException before even reaching Main().
  5. The location API appears to use some standard accuracy values, from which we can infer the sensor being used:
    1. 1000m == IP address geolocation
    2. 100m == WiFi database geolocation
    3. < 85m == GPS geolocation
  6. I don't know if all of my units of measurement are correct.
  7. 1G is equal to an acceleration of 9.81m/s² or a force of 9.81N/kg.

If you have additional information to share, please contact me. If you found this useful, please cast a vote.

History

  • 2012-11-06 – Original article

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here