SensorCore SDK sample data recorder for the simulators
Перейти к файлу
Satyam Bandarapu 9a271d4eb4 adding license name 2015-03-03 12:34:02 +02:00
.nuget Initial commit 2014-08-04 11:36:41 +03:00
record adding license name 2015-03-03 12:34:02 +02:00
README.md Updated to use latest Lumia SensorCore SDK 1.1 Preview 2015-03-03 12:15:35 +02:00
record.sln Initial commit 2014-08-04 11:36:41 +03:00

README.md

Recorder

SensorCore SDK sample data recorder for the simulator classes.

  1. Instructions

Learn about the Lumia SensorCore SDK from the Lumia Developer's Library. The example requires the Lumia SensorCore SDK's NuGet package but will retrieve it automatically (if missing) on first build.

To build the application you need to have Windows 8.1 and Windows Phone SDK 8.1 installed.

Using the Windows Phone 8.1 SDK:

  1. Open the SLN file: File > Open Project, select the file recorder.sln
  2. Remove the "AnyCPU" configuration (not supported by the Lumia SensorCore SDK) or simply select ARM
  3. Select the target 'Device'.
  4. Press F5 to build the project and run it on the device.

Please see the official documentation for deploying and testing applications on Windows Phone devices: http://msdn.microsoft.com/en-us/library/gg588378%28v=vs.92%29.aspx

  1. Implementation

Important files and classes:

The core of this app's implementation is in MapPage.xaml.cs.

The API is called through the CallSensorcoreApiAsync() helper function, which helps handling the typical errors, like required features being disabled in the system settings.

Required capabilities:

The SensorSore SDK (via its NuGet package) automatically inserts in the manifest file the capabilities required for it to work:

<DeviceCapability Name="location" />
<m2:DeviceCapability Name="humaninterfacedevice">
  <m2:Device Id="vidpid:0421 0716">
    <m2:Function Type="usage:ffaa 0001" />
    <m2:Function Type="usage:ffee 0001" />
    <m2:Function Type="usage:ffee 0002" />
    <m2:Function Type="usage:ffee 0003" />
    <m2:Function Type="usage:ffee 0004" />
  </m2:Device>
</m2:DeviceCapability>
  1. Version history

  • Version 1.1.0.3: Updated to use latest Lumia SensorCore SDK 1.1 Preview
  • Version 1.0.0.1: Some bug fixes made in this release.
  • Version 1.0: The first release.
  1. Downloads

Project Release Download
Recorder v1.1.0.3 recorder-1.1.0.3.zip
Recorder v1.0.0.1 recorder-1.0.0.1.zip
Recorder v1.0 recorder-1.0.zip
  1. See also

The projects listed below are exemplifying the usage of the SensorCore APIs