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

Detect Shaking Motion on Windows Phone 7

Rate me:
Please Sign up or sign in to vote.
4.80/5 (4 votes)
2 Aug 2010CPOL2 min read 45.9K   16   6
A demonstration of one way to detect shaking motion on Windows Phone 7

The other day on the MSDN forums, someone asked about how to detect a shaking motion on Windows Phone 7. I've been playing with the accelerometer lately, so I took great joy in answering this along with providing a working implementation. The question was asking about shaking motion in a left-right direction. I made a class that detects left-right and up-down motion (totally ignoring the Z-axis all together for now). Though extending it to consider the Z-axis wouldn't be hard.

The code for detecting the motion has been abstracted in a class called ShakeDetector. The algorithm used has a few variables/constants defined that can be modified to tune the behaviour of the class. The classes constructor accepts an [optional] parameter of how many times the phone should be shaken before the motion is considered acceptable. <codeminimumaccelerationmagnitude> can be raised or lowered to control how hard the device needs to be shaken to be considered acceptable. And MinimumShakeTime takes a time span that defines the maximum length of time over which a shake sequence must occur to be considered acceptable. Once the user moves the phone in a way that meets the requirements for the type of shake we wanted to detect a ShakeDetected event is raised.

I've reduced the direction in which the device is moving to one of 8 directions (North, East, South, West, and the directions in between those). I could have kept the direction as an angle and just ensured that there was atleast a minimum difference between the angles but I thought using the directions on a map would make it easier for someone else to understand.

C#
void _accelerometer_ReadingChanged(object sender, AccelerometerReadingEventArgs e)
{
    //Does the current acceleration vector meet the minimum magnitude that we
    //care about?
    if ((e.X*e.X + e.Y*e.Y) > MinimumAccelerationMagnitudeSquared)
    {
        //I prefer to work in radians. For the sake of those reading this code
        //I will work in degrees. In the following direction will contain the direction
        // in which the device was accelerating in degrees. 
        double degrees = 180.0*Math.Atan2(e.Y, e.X)/Math.PI;
        Direction direction = DegreesToDirection(degrees);

        //If the shake detected is in the same direction as the last one then ignore it
        if ((direction & _shakeRecordList[_shakeRecordIndex].ShakeDirection) 
		!= Direction.None)
            return;
        //This is a shake we care about. save in our list
        ShakeRecord record = new ShakeRecord();
        record.EventTime = DateTime.Now;
        record.ShakeDirection = direction;
        _shakeRecordIndex = (_shakeRecordIndex + 1)%_minimumShakes;
        _shakeRecordList[_shakeRecordIndex] = record;

            CheckForShakes();
    }
}
void CheckForShakes()
{
    int startIndex = (_shakeRecordIndex - 1);
    if (startIndex < 0) startIndex = _minimumShakes - 1;
    int endIndex = _shakeRecordIndex;

    if ((_shakeRecordList[endIndex].EventTime.Subtract
	(_shakeRecordList[startIndex].EventTime)) <= MinimumShakeTime)
    {
        OnShakeEvent();
    }
}

The example code can be found in my SkyDrive account here. If you want to see the program in action, there is a video on YouTube.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
United States United States
I attended Southern Polytechnic State University and earned a Bachelors of Science in Computer Science and later returned to earn a Masters of Science in Software Engineering. I've largely developed solutions that are based on a mix of Microsoft technologies with open source technologies mixed in. I've got an interest in astronomy and you'll see that interest overflow into some of my code project articles from time to time.



Twitter:@j2inet

Instagram: j2inet


Comments and Discussions

 
QuestionHow do I prevent it from firing multiple events in single shake guesture? Pin
PrasadGVL5-Apr-12 0:38
PrasadGVL5-Apr-12 0:38 
QuestionMinor fix - there should be a call to Dispose() on accelerometer object after calling Stop() Pin
Vlad P.9-Oct-11 12:58
Vlad P.9-Oct-11 12:58 
BugMissing reinitialization Pin
Niko Bertele19-Sep-11 6:54
Niko Bertele19-Sep-11 6:54 
Hi Joel,

First of all I want to thank you for sharing this code. It helped me a lot.

But I also stumbled across a small bug in your code regarding the reinitialization of the Array containing the minimumShakes.


You call
C#
_shakeRecordList = new ShakeRecord[minShakes];
in the constructor, but you should also call it after stopping the shake. Otherwise you will get some inconsistency when there are a lot shake events in a short time and you try to update some UI after every shake event.

At least this is the behaviour i had in my app.

I fixed this problem by changing:
C#
public void Start()
       {
           lock(SyncRoot)
           {
               if(_accelerometer==null)
               {
                   _accelerometer = new Accelerometer();
                   _accelerometer.ReadingChanged += new EventHandler<AccelerometerReadingEventArgs>(_accelerometer_ReadingChanged);
                    _accelerometer.Start();
               }
           }
       }


to:

C#
public void Start()
       {
           lock(SyncRoot)
           {
               if(_accelerometer==null)
               {
                   _accelerometer = new Accelerometer();
                   _accelerometer.ReadingChanged += new EventHandler<AccelerometerReadingEventArgs>(_accelerometer_ReadingChanged);
                    _accelerometer.Start();
               }
               _shakeRecordList = new ShakeRecord[_minimumShakes];
           }
       }


Greetings,

So now everytime a Shake starts again the is empty again. Smile | :)

Niko
GeneralMy vote of 5 Pin
Niko Bertele19-Sep-11 6:45
Niko Bertele19-Sep-11 6:45 
GeneralFormatting issue with blog entry Pin
DaveAuld2-Aug-10 9:11
professionalDaveAuld2-Aug-10 9:11 
GeneralRe: Formatting issue with blog entry Pin
Joel Ivory Johnson2-Aug-10 9:27
professionalJoel Ivory Johnson2-Aug-10 9:27 

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.