Click here to Skip to main content
15,881,803 members
Articles / Mobile Apps / Windows Phone 7

Using Windows Phone As Windows 7 Accelerometer Sensor

Rate me:
Please Sign up or sign in to vote.
5.00/5 (5 votes)
15 Aug 2011Ms-PL4 min read 22.8K   5   2
How to use Windows Phone as Windows 7 Accelerometer sensor

I just had a cool idea! (actually I had it like 6 months ago, but bear with me).

My idea involves mixing some of the features in Windows 7 with some of the features in Windows Phone 7, to create a glorious mix!

image

Windows 7

One of the new features in Windows 7 is the Sensor API which provides a standard interface for accessing sensors of various types, like accelerometer, etc.

I wrote in the past about how you can consume this API from a C# application using Windows API Code Pack.

Windows Phone 7

Windows Phone 7 comes with a few sensors out of the box, among them: accelerometer!

Idea

What if we use Windows Phone 7 accelerometer sensor as a standard device on Windows 7?

Roadmap

So how can we accomplish that? Let's break the idea into steps:

Step 1 - Create a Software Driver

I’ll start with creating a dummy software driver. This driver will implement what's necessary to be a standard Windows 7 Accelerometer sensor, but at this stage will simply return constant data.

In order to write a sensor driver for Windows 7 I’ll need to use User Mode Driver Framework (UMDF), a COM-like, C++ framework for writing user-mode drivers in Windows 7.

Step 2 - Transfer Windows Phone 7 Sensor Data into the PC

The next step is to find a way to transfer the accelerometer data from a Windows Phone device into the PC. One possible way of doing this is implementing a local WCF service on the desktop that the Phone will keep calling with accelerometer data. This will require an application to run on the phone to keep the data flowing.

Step 3: Consume the WCF Service from the Phone

Using the service from the previous step, we can now consume it in a simple Windows Phone application where all it does is getting the accelerometer sensor data using the phone API and call the WCF service with the latest data.

Step 4: Make the Software Driver Consume the Windows Phone 7 Data

Now that I have a software driver that returns dummy accelerometer data and a way to get real accelerometer data from the Windows Phone, all I need to do is connect the dots and make my accelerometer driver return the real data. To do this, I'll need some kind of interprocess communication to transfer the data from the WCF service to the driver.

Long Story Short…

I present to you the Windows Phone Accelerometer Driver for Windows 7!

The full source code for this project can be found on the CodePlex project site.

Some Implementation Details

The actual driver was fairly easy to implement since I used the CodeProject article "Writing a Sensor Driver for the Wiimote on Windows 7" by Rajasekharan Vengalil as a base for my Windows Phone 7 driver. You can find the driver source code in the project named WP7AccelerometerDriver.

As mentioned earlier, I've implemented a simple local WCF service for transferring the accelerometer data from the phone to the driver. You can find the service source code in the project named WP7AccelerometerService. The service uses named pipes to communicate with the driver.

The phone application is a very simple one that consumes the WCF service and calls it whenever a new accelerometer value is available. You can find its source code in the project named WP7AccelerometerClient.

Finally, if you want to check the functionality of the accelerometer driver, you can use either the SensorDiagnostics project or the more fun PlaneDemo project, which I borrowed from Sergey Zwezdin's blog.

How to Install?

  1. Download and extract project binaries or source from the CodePlex project site.
  2. Open CMD as administrator
  3. Go to the folder \Driver\Install\
  4. According to the bitness of your OS, run install_wp7_driver_32bit.bat or install_wp7_driver_64bit.bat to install the driver.

    image

  5. When the following notification appears, select "Install this driver software anyway":

    image
    This should take around 1-2 minutes to complete.

  6. Enable installed Sensor in the Control Panel.

    image

  7. Run the WCF service from as administrator. If you run it from Visual Studio, make sure you ran Visual Studio as administrator.

     

    image

  8. Run the Windows Phone client on a real device while connected to the PC and enter your PC (LAN) IP.

    image

  9. That's it! You can now sit back and enjoy the ride using the PlaneDemo application or SensorDiagnostics, or any other software that use the accelerometer sensor.

    image

    image

How to Uninstall?

If you want to uninstall the driver, simply go to the Device Manager, select the "WP7 Accelerometer Sensor" device from the Sensors category, select uninstall from the context menu and make sure you mark the checkbox to delete the driver.

image

Final Note

I've seen the project works both on a real device and using the phone emulator, however it's not a one-click install. I expect users to have problems with the installation. If you encounter some problems, please post on the CodePlex project site forum page and I'll do my best to help.

Also, if you want to improve the source code (maybe adding GPS support?) or the installation procedure, I'll be happy to include your improvements and even include you as one of the project members on CodePlex.

This project was pure fun since it combines many useful technologies to create real value. Among the technologies, you can find C++, COM, UMDF, C#, WCF, WP7, etc.

That's it for now,
Arik Poznanski.

Image 10

Image 11 Image 12 Image 13

Image 14

License

This article, along with any associated source code and files, is licensed under The Microsoft Public License (Ms-PL)


Written By
Software Developer (Senior) Verint
Israel Israel
Arik Poznanski is a senior software developer at Verint. He completed two B.Sc. degrees in Mathematics & Computer Science, summa cum laude, from the Technion in Israel.

Arik has extensive knowledge and experience in many Microsoft technologies, including .NET with C#, WPF, Silverlight, WinForms, Interop, COM/ATL programming, C++ Win32 programming and reverse engineering (assembly, IL).

Comments and Discussions

 
QuestionCool! Pin
Sergey Zwezdin13-Apr-13 1:34
Sergey Zwezdin13-Apr-13 1:34 
GeneralMy vote of 5 Pin
Dr. Jones DK22-Aug-11 22:18
professionalDr. Jones DK22-Aug-11 22:18 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.