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!
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?
- Download and extract project binaries or source from the CodePlex project site.
- Open CMD as administrator
- Go to the folder \Driver\Install\
- According to the bitness of your OS, run install_wp7_driver_32bit.bat or install_wp7_driver_64bit.bat to install the driver.
- When the following notification appears, select "Install this driver software anyway":
This should take around 1-2 minutes to complete.
- Enable installed Sensor in the Control Panel.
- Run the WCF service from as administrator. If you run it from Visual Studio, make sure you ran Visual Studio as administrator.
- Run the Windows Phone client on a real device while connected to the PC and enter your PC (LAN) IP.
- 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.
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.
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.