active questions tagged accelerometer - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T07:30:11Z http://stackoverflow.com/feeds/tag/accelerometer http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1818376/iphone-accelerometer-works-even-in-flat-surface 0 IPhone accelerometer works even in flat surface. Amaresh 2009-11-30T07:48:05Z 2009-11-30T08:32:32Z <p>I have an imageView in the view. It moves even if the iphone is still for some time. Why is it so ? Also the image does not respond quickly to the movement of the iphone. </p> <p>Here is my code written for this:</p> <p>I have also set the updateInterval and delegate for the accelerometer.</p> <pre><code>#define kVelocityMultiplier 1000; -(void)accelerometer:(UIAccelerometer *)accelerometer didAccelerate:(UIAcceleration *)acceleration { if(currentPoint.x &lt; 0) { currentPoint.x=0; ballXVelocity=0; } if(currentPoint.x &gt; 480-sliderWidth) { currentPoint.x=480-sliderWidth; ballXVelocity=0; } static NSDate *lastDrawTime; if(currentPoint.x&lt;=480-sliderWidth&amp;&amp;currentPoint.x&gt;=0) { if(lastDrawTime!=nil) { NSTimeInterval secondsSinceLastDraw=-([lastDrawTime timeIntervalSinceNow]); ballXVelocity = ballXVelocity + -acceleration.y*secondsSinceLastDraw; CGFloat xAcceleration=secondsSinceLastDraw * ballXVelocity * kVelocityMultiplier; currentPoint = CGPointMake(currentPoint.x + xAcceleration, 266); } slider.frame=CGRectMake(currentPoint.x, currentPoint.y, sliderWidth, 10); } [lastDrawTime release]; lastDrawTime=[[NSDate alloc]init]; } </code></pre> <p>Can anyone help me out please ?</p> http://stackoverflow.com/questions/1807954/why-is-using-a-static-int-in-my-accelerometer-callback-so-much-slower-than-using 0 Why is using a static int in my accelerometer callback so much slower than using an instance variable? Elliot 2009-11-27T10:29:41Z 2009-11-27T11:54:35Z <p>I'm playing with the GLGravity example to figure out some of the performance nuances related to dealing with the accelerometer.</p> <p>Here's the problem code:</p> <pre><code>- (void)accelerometer:(UIAccelerometer*)accelerometer didAccelerate:(UIAcceleration*)acceleration { static int accelCallCount; accelCallCount++; if (accelCallCount % 100 == 0) { NSLog(@"accelCallCount:%d", accelCallCount); } //Use a basic low-pass filter to only keep the gravity in the accelerometer values accel[0] = acceleration.x * kFilteringFactor + accel[0] * (1.0 - kFilteringFactor); accel[1] = acceleration.y * kFilteringFactor + accel[1] * (1.0 - kFilteringFactor); accel[2] = acceleration.z * kFilteringFactor + accel[2] * (1.0 - kFilteringFactor); //Update the accelerometer values for the view [glView setAccel:accel]; } </code></pre> <p>This code runs very slowly. Visually, I can tell that the movement of the teapot becomes very delayed, and it just gets slower and slower. Eventually the teapot's movements are easily 2+ minutes delayed from the time I actually moved the device.</p> <p>The output in the Debugger Console does show some delay, too, but it's not too much. It's nearly (but not quite) twice as slow as it should be.</p> <pre><code>2009-11-27 02:18:58.874 GLGravity[419:207] accelCallCount:100 2009-11-27 02:19:00.507 GLGravity[419:207] accelCallCount:200 2009-11-27 02:19:02.174 GLGravity[419:207] accelCallCount:300 </code></pre> <p>Accelerometer callbacks seem to pile up, though, in some kind of queue. So what starts off as being not-too-bad quickly becomes unbearably slow.</p> <p>This problem disappears, however, if I just move the declaration of accelCallCount to the header file and declare it as an instance var:</p> <pre><code>int accelCallCount; </code></pre> <p>Why does this fix it?</p> <p>On a related note, whether I use this code or the "fixed" (accelCallCount as an ivar) code, the whole thing also slows down if I touch the screen. Why might that be?</p> http://stackoverflow.com/questions/150446/how-do-i-detect-when-someone-shakes-an-iphone 26 How do I detect when someone shakes an iPhone? Josh Gagnon 2008-09-29T20:14:59Z 2009-11-19T17:44:24Z <p>I want to react when somebody shakes the iPhone. I don't particularly care how they shake it, just that it was waved vigorously about for a split second. Does anyone know how to detect this?</p> http://stackoverflow.com/questions/825923/are-there-any-good-examples-for-how-to-use-the-accelerometers-in-iphone-os 1 Are there any good examples for how to use the accelerometers in iPhone OS? Thanks 2009-05-05T17:06:23Z 2009-11-19T10:34:28Z <p>I think that there are some issues with the earth Gravity, so I wonder if there are any examples where the accelerometers work by subtracting these.</p> http://stackoverflow.com/questions/1737784/whats-the-easiest-way-to-calibrate-the-tilt-setting-for-an-iphone-app 0 What's the easiest way to calibrate the tilt setting for an iPhone app? MrDatabase 2009-11-15T15:15:08Z 2009-11-15T20:09:04Z <p>I'm giving the user of an iPhone app the ability to use the tilt controls when standing, sitting, lying down etc. The user adjusts for each position by going to a settings screen, holding the phone at the desired angle, and tapping a save button. <strong>What's the best way to do this in the code?</strong></p> <p>The only thing I'm familiar with is the accelerometer delegate where I can get x, y, and z values.</p> http://stackoverflow.com/questions/1737154/iphone-how-to-make-objects-flying-around-in-a-view 0 [iphone] How to make objects flying around in a view jacky 2009-11-15T10:08:44Z 2009-11-15T18:21:21Z <p>Hey,</p> <p>How is it possible to let some objects fly around and bumb at the end of the view and collide on each other.</p> <p>The second step would add acceleration of the objects by shaking.</p> <p>I haven't found a tutorial yet or some step to begin at.</p> <p>thanks a lot for your help :)</p> <p>Heres a picter of what i image(only a still)</p> <p><a href="http://picfront.org/d/ZdSvK9G8D/flying%5Fcircles.jpg" rel="nofollow">http://picfront.org/d/ZdSvK9G8D/flying%5Fcircles.jpg</a></p> http://stackoverflow.com/questions/1638864/filtering-accelerometer-data-noise 1 Filtering accelerometer data noise Faiz 2009-10-28T17:39:21Z 2009-11-15T05:00:56Z <p>Hi</p> <p>How do I filter noise of the accelerometer data in Android? I would like to create a high-pass filter for my sample data so that I could eliminate low frequency components and focus on the high frequency components. I have read that Kalman filter might be the best candidate for this, but how do I integrate or use this method in my application which will mostly written in Android Java? or can it be done in the first place? or through Android NDK? Is there by any chance that this can be done in real-time?</p> <p>Any idea will be much appreciated. Thank you!</p> http://stackoverflow.com/questions/1724374/accelerometer-samplerate 1 Accelerometer samplerate Mattias Akerman 2009-11-12T18:32:11Z 2009-11-12T18:51:31Z <p>I'm having some problems with the accelerometer. When I first started develop my game the controls felt very snappy and precise, but when adding more graphical elements the accelerometer feels like it's reacting very late and sometimes not as precise as before. I'm having a framerate of around 40fps.</p> <p>This is where I read the values (as i'm supposed to I guess)</p> <pre><code>- (void)accelerometer:(UIAccelerometer*)accelerometer didAccelerate:(UIAcceleration*)acceleration; </code></pre> <p>Is this a common and expected behaviour or can I do something about it? Can the sample rate and precision be controlled? Or have done something wrong if this happens?</p> http://stackoverflow.com/questions/1718052/uiaccelerometer-doesnt-send-events-to-second-delegate 0 UIAccelerometer doesn't send events to second delegate Bdebeez 2009-11-11T21:05:15Z 2009-11-11T21:52:26Z <p>I am developing a game that uses a different controller for each level. It needs to detect a shake via the accelerometer, so it registers itself as a delegate like so:</p> <pre><code>UIAccelerometer *accel = [UIAccelerometer sharedAccelerometer]; accel.delegate = self; accel.updateInterval = kUpdateInterval; </code></pre> <p>When the level ends, this controller gets dealloc'd and freed. Previously, I was getting a crash after this controller was freed because I didn't nil out the delegate on UIAccelerometer (i.e. it was still sending events to an object that has now been freed). So now, inside of dealloc, I'm doing this:</p> <pre><code>UIAccelerometer *accel = [UIAccelerometer sharedAccelerometer]; accel.delegate = nil; </code></pre> <p>All is well and good and the first level plays without a hitch. The problem happens when I get to the next level, create a new level controller and run that first batch of code again (setting the new contoller now as the delegate). After this, I'm not getting any calls from the Accelerometer.</p> <p>So the question is, are you only allowed to have one delegate per app for the Accelerometer, or am I just missing something? I haven't seen anything in the docs that disallows setting the delegate multiple times. I'm slightly new to Obj-C, but as far as I understand delegates this shouldn't be too unorthodox.</p> <p>Note: I know that in 3.0 I could just listen for shake notifications. Unfortunately, I need something else to be first responder the entire time I'm interested in the shake. So I can't just refactor to that option.</p> http://stackoverflow.com/questions/1698604/is-there-a-1-to-1-ratio-of-motionbegan-and-motionended-events 1 Is there a 1-to-1 ratio of motionBegan and motionEnded events? Kenny Winker 2009-11-09T01:04:30Z 2009-11-09T01:24:37Z <p>I'm implementing shake gestures as described in this <a href="http://stackoverflow.com/questions/150446/how-do-i-detect-when-someone-shakes-an-iphone/1351486#1351486http%3A//stackoverflow.com/questions/150446/how-do-i-detect-when-someone-shakes-an-iphone/1351486#1351486">answer</a> however if I shake my phone for longer than a second, motionEnded doesn't get called.</p> <p>Is there not a 1-to-1 ratio of motionBegan and motionEnded events guaranteed by the OS, or is this a problem with the responder chain and events are getting sent elsewhere?</p> http://stackoverflow.com/questions/1189098/basic-doubt-about-sensor-usage 1 Basic doubt about sensor usage Al 2009-07-27T16:11:46Z 2009-11-02T11:00:04Z <p>Suppose I have a cellphone with accelerometer and magnetometer, and want to determine its absolute (wrt North/East/South/West) 3d position. Imagine the phone is laid vertically, with the screen facing me, the "up" vector pointing to the ceil. Whenever I tilt, the accelerometer allows me to get the "up" vector info change. The problem is that if I tilt the device and put it horizontally (screen now facing ceil, and "up" vector pointing to the opposite of where I am), then the up vector doesn't get updated any more if I rotate the phone horizontally on the table. This is something that clearly is detected by the magnetometer now. So, the question is, when to know where to use acc or mag for each case? Is there a generic way to achieve this?</p> http://stackoverflow.com/questions/1630816/android-accelerometer-false-detection 0 Android: Accelerometer false detection unknown (yahoo) 2009-10-27T13:31:19Z 2009-10-28T13:29:45Z <p>I have a code snippet to detect accelerometer movements. It works some times by properly detecting slight movements, but sometimes it detects movements when I kept my device idle too. Are there any problems with built-in accelerometer detection on Android?</p> <p>I use an HTC G-1 device. My code snippet is below. How do I resolve it so I can detect small device movements but not detect anything when the device is idle?</p> <pre><code>private static final int SHAKE_THRESHOLD = 50; public void onSensorChanged(int sensor, float[] values) { if (sensor == SensorManager.SENSOR_ACCELEROMETER) { long curTime = System.currentTimeMillis(); // only allow one update every 100ms. if ((curTime - lastUpdate) &gt; 100) { long diffTime = (curTime - lastUpdate); lastUpdate = curTime; x = values[SensorManager.DATA_X]; y = values[SensorManager.DATA_Y]; z = values[SensorManager.DATA_Z]; float speed = Math.abs(x+y+z - last_x - last_y - last_z) / diffTime * 10000; if (speed &gt; SHAKE_THRESHOLD) { long curTime = System.currentTimeMillis(); long diff = (curTime - shakeTime); shakeTime = curTime; if (myFlagIgnoreShakeDetection==true) //Caused unneccessary accelerometer //notification looping when device is idle return; // Doing something... } last_x = x; last_y = y; last_z = z; } } } </code></pre> http://stackoverflow.com/questions/1436423/blackberry-storm-accelerometerlistener-not-being-notified-on-first-orientation-ch 1 BlackBerry Storm AccelerometerListener not being notified on first orientation change Andrey Butov 2009-09-17T02:25:00Z 2009-10-28T09:37:28Z <p>This seems to be a well-known issue right now, but the accepted workaround doesn't seem to be working for us.</p> <p>On the BlackBerry Storm (JDE 4.7, standard set of 4.7+ simulators), the following bit of code registers an <strong>AccelerometerListener</strong>. The listener does not get called on the first change in device orientation, but does get called on every subsequent change in orientation. </p> <pre><code>net.rim.device.api.system.AccelerometerSensor.Channel channel; void registerAccelerometerListener() { if ( AccelerometerSensor.isSupported() ) { channel = AccelerometerSensor.openOrientationDataChannel( Application.getApplication()); channel.setAccelerometerListener(this); // this class does indeed implement the AccelerometerListener interface } } public void onData(AccelerometerData data) { // should be called on every orientation change, // but is only called on the second (and subsequent) orientation // change, ignoring the first. } </code></pre> <p>With the above code, launching the app in portrait mode, then flipping the device on its side (or making any other orientation change) should force the accelerometer to call <strong>onData()</strong> of the listener. This does happen, but only on the second and each subsequent flip of the device. The first orientation change is always ignored.</p> <p>The accepted solution floating around the net seems to be to force call:</p> <pre><code>Ui.getUiEngineInstance().setAcceptableDirections(...); </code></pre> <p>... when the app is launched, with restricted parameters such as :</p> <pre><code>Display.DIRECTION_NORTH </code></pre> <p>... and then to call it again at some point later on with the parameters that are actually desired, such as :</p> <pre><code>Display.DIRECTION_NORTH|Display.DIRECTION_WEST|Display.DIRECTION_EAST </code></pre> <p>I assume this is meant to somehow reset or kick start the accelerometer bindings to the app.</p> <p>But the above workaround doesn't seem to be working for us (it's unclear where the setAcceptableDirections(...) calls are to be made, for one), and we're still stuck with the issue of the AccelerometerListener not being called the first time.</p> <p>Has anyone successfully resolved this?</p> http://stackoverflow.com/questions/1586658/combine-gyroscope-and-accelerometer-data 3 Combine Gyroscope and Accelerometer Data Dylan Vester 2009-10-19T01:56:14Z 2009-10-21T00:54:17Z <p>I am building a balancing robot using the Lego Mindstorm's NXT system. I am using two sensors from HiTechnic, the first being an Accelerometer and the second being a Gyroscope. I've successfully filtered out noise from both sensors and derived angles for both in a range between -90 and 90 degrees, with 0 degrees being perfectly balanced.</p> <p>My next challenge is to combine both of the sensor values to correct for the Gyroscope's drift over time. Below is an example graph I created from actual data to demonstrate the drift from the gyroscope:</p> <p><img src="http://dylanvester.com/image.axd?picture=GryoAndAccelerometer2.png" alt="alt text" /></p> <p>The most commonly used approach I've seen to make combining these sensors rock solid is by using a Kalman filter. However, I'm not an expert in calculus and I really don't understand mathematical symbols, I do understand math in source code though.</p> <p>I'm using RobotC (which is like any other C derivative) and would really appreciate if someone can give me examples of how to accomplish this in C.</p> <p>Thank you for your help!</p> <p><strong>SOLUTION RESULTS:</strong></p> <p>Alright, kersny solved my problem by introducing me to complementary filters. This is a graph illustrating my results:</p> <p><em>Result #1</em></p> <p><img src="http://dylanvester.com/image.axd?picture=GryoAndAccelerometer3.png" alt="alt text" /></p> <p><em>Result #2</em></p> <p><img src="http://dylanvester.com/image.axd?picture=GryoAndAccelerometer4.png" alt="alt text" /></p> <p>As you can see, the filter corrects for gyroscopic drift and combines both signals into a single smooth signal.</p> http://stackoverflow.com/questions/1106042/accessing-a-toshiba-laptop-accelerometer-device-driver 2 Accessing a Toshiba Laptop Accelerometer Device Driver Adi 2009-07-09T19:40:48Z 2009-10-12T23:32:13Z <p>Hi,</p> <p>I have a new Toshiba Satellite Pro S300 laptop (running Windows XP) which sports a 3D accelerometer for HDD protection. I'd like to tap into the data sent by this sensor. Older Toshiba laptop/Tablets had a DLL that could be accessed to extract the acceleration data. Unfortunately, the S300 does not seem to have this DLL (The DLL hack has been documented elsewhere, e.g. <a href="http://tinyurl.com/ng2tha" rel="nofollow">here</a>). </p> <p>The HDD Protection app (which has a cute 3D visualization of a rotating HDD that rotates in synch with the laptop's position and motion) doesn't seem to depend on any "non-standard"/custom DLLs (according to DependencyWalker). It seems that the data is accessed either through a service and/or through a .sys device driver. I think I managed to identify the relevant files, but I have no idea how to find, name, access, load (or "disassemble") the relevant functions.</p> <p>How can I discover and use the accelerometer data?</p> http://stackoverflow.com/questions/1539151/how-to-distinguish-movement-accelerations-from-oscillations-and-noise-in-iphone 2 How to distinguish movement accelerations from oscillations and noise in iphone kevin 2009-10-08T16:59:43Z 2009-10-08T17:06:21Z <p>Hi everybody on stackoverflow.</p> <h1>SHORT VERSION :)</h1> <p>I need to use (x,y,z) acceleration values related only to the movement of the iPhone. Just to be clear, think an environment like a car. The iPhone's accelerometer is very sensitive. If I log acceleration values with a frequency of 100Hz, there are so many values related to noise, car vibrations and other acceleration vectors which are not directed like the iPhone motion (for example, dampers oscillations cause acceleration vectors directed along z-axis).</p> <p>In other words, I need to filter accelerations detection in a way capable to isolate accelerations whose direction is the same (within a certain offset) of the motion direction.</p> <h1>DEEPER CONSIDERATIONS :'(</h1> <p>Obviously, I could fix the iphone position so that its y axis overlaps the movement direction (in the previous car environment, this means fixing the iphone y axis parallel to the front direction). The problem is that I need to allow iphone's relative moments. I can't fix the iphone position.</p> <p>First of all I analyzed values produced by noise and oscillations, and I figured out that their magnitude is often very higher than normal car accelerations. Filtering the magnitude is a good idea to ease the problem but it's not a solution: on one side many unwanted noise accelerations are not filtered because their magnitude falls within the range, on the other side many wanted motion accelerations are filtered because they falls outside the range.</p> <p>On the iPhone 3GS I can use the magnetometer to measure degrees heading relative to magnetic North. I could use this to find the direction of motion but the problem is still there: magneticHeading value is always measured relative to the top of the device. So the iPhone should be fixed along the front direction.</p> <p>I can't think any other solution. Ideas? Tank you!</p> http://stackoverflow.com/questions/1444617/wireless-protocol-for-accelerometer-data 2 Wireless protocol for accelerometer data Joel 2009-09-18T13:40:05Z 2009-10-05T03:07:22Z <p>I'm building an application where a mobile phone with an accelerometer is used to control an app on a computer in a similar way you would use a mouse. So I need to send the movement from the phone to the computer over some wireless protocol. I am thinking about using Bluetooth but I am not sure what transfer delay to expect. Another possibility is using 802.11g. What do you think? What delay could I expect given that I don’t hit the bandwidth limit?</p> http://stackoverflow.com/questions/1416491/how-do-i-calculate-mouse-movements-using-a-3-axis-accelerometer 3 How do I calculate mouse movements using a 3 axis accelerometer razr1983 2009-09-12T23:58:39Z 2009-09-20T14:41:27Z <p>I have a 3 axis accelerometer(any mobile phone) but I can't find any good formulas to interpret the data that's coming from it. No matter what I do the movements are jerky/insensitive. I read that I also need Euler angle or Rotation Matrix?</p> <p>I will appreciate any good materials for reading...</p> http://stackoverflow.com/questions/1118621/how-do-i-control-a-camera-in-opengl-with-a-gravity-vector-from-the-iphones-accel 1 How do I control a camera in openGL with a gravity vector from the iPhone's accelerometer Bishop 2009-07-13T10:03:09Z 2009-09-18T13:26:44Z <p>I have a camera structure that holds location, up, and direction vectors. I'd like to update these vectors based on the gravity vector I get from the iPhone's accelerometer. The effect I'm going for is: when the top of the phone is tilted away from you, the camera looks towards the ground. In other words, the scene/geometry follows the orientation of the gravity vector while the camera follows the orientation of the phone itself.</p> <p>I thought I could multiply the matrix I built from the camera vectors by the one built from the gravity vector and then just pull out the new up and direction vectors, but I don't think I fully understand the process as I can't get it to work. I'd greatly appreciate any help. Thanks!</p> http://stackoverflow.com/questions/1332405/does-anyone-know-a-tutorial-that-teaches-you-to-make-a-bobblehead 0 Does anyone know a tutorial that teaches you to make a bobblehead? unknown (google) 2009-08-26T04:58:51Z 2009-08-26T07:54:37Z <p>I'm trying to make a bobble head app, but I don't know how to use the movement technology..</p> <p>Any thoughts? Thanks</p> http://stackoverflow.com/questions/1235659/my-iphone-app-crashes-bad-access-when-turned-on-its-side-landscape-mode 1 My Iphone App crashes (Bad access) when turned on it's side (landscape mode). Jenny 2009-08-05T20:47:15Z 2009-08-05T21:06:51Z <p>For some reason, every time I run my Iphone App, the App works fine as long as it is upright. The second the simulator turns to the left or right (like if I manually turn it, or if it's trying to play a video), the code crashes, with either a "Bad Access" or an exception.</p> <p>The crazy thing is that this stuff was JUST working, and I didn't change ANYTHING that looks like it would affect landscape mode only. Could something complicated in the background have changed to make this stop working? Is this just a symptom of some sort of memory error?</p> <p>-Jenny</p> http://stackoverflow.com/questions/1185874/how-to-determine-absolute-orientation 1 How to determine absolute orientation Al 2009-07-26T23:28:49Z 2009-07-27T00:05:24Z <p>I have a xyz accelerometer and magnetometer. Now I want to determine the orientation of the device using both. The problem I see is that depending on the device orientation, I'd need to use the sensors in different order.</p> <p>Let me give an example. If I have the device facing me then changes in both the roll and pitch can be determined with the accelerometer. For yaw I use the magnetometer.</p> <p>But if I put the device horizontally (ie. turn it 90º, facing the ceiling) then any change in the up vector (now horizontal) isn't notice, as the accelerometer doesn't detect any change. This can now be detected with the magnetometer.</p> <p>So the question is, how to determine when to use one or the other. Is this enough with both sensors or do I need something else?</p> <p>Thanks</p> http://stackoverflow.com/questions/1170917/how-to-use-shake-api-in-iphone-sdk-3-0 4 How to use Shake API in iPhone SDK 3.0? sash 2009-07-23T10:36:48Z 2009-07-23T15:57:50Z <p>Apple annonced Shake API in iPhone SDK 3.0. I can not find any information regarding this new feature. </p> <p>Who knows about how to use it? Any example, link will be good.</p> http://stackoverflow.com/questions/1106852/how-do-i-set-up-a-view-controller-as-a-delegate-for-two-things-such-as-the-locat 2 How do I set up a view controller as a delegate for two things (such as the LocationManager and the Accelerometer)? Andrew Johnson 2009-07-09T22:52:35Z 2009-07-09T23:15:51Z <p>I'm sorry if my question title seems fundamentally uninformed. Let me explain what I am trying to do.</p> <p>I have defined the following UIViewController subclass, which fires up LocationManager, and has a Start Recording button to save a GPS track.</p> <p>Now I would like to also fire up the accelerometer and allow the user to record that as well. </p> <p>My ViewController subclass is the LocationManager delegate, so what should I use for the Accelerometer delegate? Can I use the same View, or do I need to define a subview?</p> <p>Here is the interface for my UIViewController subclass:</p> <pre><code>@interface RootViewController : UIViewController &lt;CLLocationManagerDelegate&gt; { NSMutableArray *eventsArray; NSManagedObjectContext *managedObjectContext; CLLocationManager *locationManager; BOOL recording; UILabel *pointLabel; UIButton *startStop; } -(void)toggleButton; </code></pre> <p>I can post more of the code if needed, but I think this is all that applies. Thanks for your help, I'm just getting into iPhone development, and my expertise, if I have any, lies in pointer-less programming languages :)</p> http://stackoverflow.com/questions/1073608/how-to-measure-the-distance-covered-by-iphone-during-free-fall 5 How to measure the distance covered by iphone during free fall? Neyas 2009-07-02T10:24:03Z 2009-07-02T21:32:42Z <p>During the free fall the iphone is supposed to send acceleration values as 0 on all the three axis. So how to detect the distance covered by the iphone?</p> http://stackoverflow.com/questions/722600/what-are-the-ranges-of-the-accelerator-on-the-iphone 1 What are the ranges of the accelerator on the iPhone? Jeffrey Berthiaume 2009-04-06T18:24:14Z 2009-06-28T05:09:43Z <p>I can't seem to find any documentation online about this, and what I am googling is giving me a lot of conflicting information...</p> http://stackoverflow.com/questions/1019665/how-can-i-differentiate-a-shake-vs-a-tilt-on-the-iphone 1 How can I differentiate a Shake vs a Tilt on the iPhone coneybeare 2009-06-19T19:26:22Z 2009-06-19T19:50:35Z <p>I have a page UIScrollView that will scroll 1 page left or right depending on the tilt of the phone.</p> <p>I would also like to implement "Shake for a random page", but cannot figure out how to do the logic for differentiating a shake motion and a x-axis tilt.</p> <p>Can these two motions be used in conjunction with one another? I don't need anything complicated like shaking while tilting, I just want both to work independently of one another.</p> http://stackoverflow.com/questions/1018770/how-to-determine-the-direction-of-a-iphone-shake 1 How to determine the direction of a iPhone shake Alpinista 2009-06-19T16:04:25Z 2009-06-19T17:40:43Z <p>I am using the accelerometer to scroll multiple subViews in a UIScrollVIew. I want the view (portrait orientation) to scroll to the right when the user flicks the iPhone to the right, and scroll to the left when the device is flicked to the left. </p> <p>I thought I could do that just by noting positive or negative x acceleration values, but I see that the values are usually a mixture of positive and negative values. I have set the floor at 1.5g to eliminate non-shake movement, and am looking at the x values over the duration of .5 seconds. </p> <p>I'm sure there is a trigonometrical method for determining the overall direction of a flick, and that you have to measure values over the duration of the flick motion. I'm also sure that someone has already figured this one out.</p> <p>Any ideas out there?</p> <p>Thanks</p> http://stackoverflow.com/questions/1010674/iphone-orientation-expressed-as-rotation 1 iPhone Orientation Expressed as Rotation ISDi 2009-06-18T03:43:37Z 2009-06-19T08:48:37Z <p>Ola Folks,</p> <pre><code> This might not be the right place for this. Let me know where I should post if I should post it elsewhere. I want to get the orientation of the device. I am thinking I can use something like this: float fAngleX = atan2(acceleration.y, acceleration.z); float fAngleY = atan2(acceleration.x, acceleration.z); float fAngleZ = atan2(acceleration.y, acceleration.x); First, is my formula right? Second, is this going to work for the device? Third, I'm going back and forth about filtering out gravity. Any thoughts? Lastly, is there a better way to get the devices orientation expressed as rotation for all three axis? </code></pre> <p>Thanx</p> <p>-isdi-</p> http://stackoverflow.com/questions/1014580/iphone-accelerometer-crashes-app 1 iPhone Accelerometer crashes app Alpinista 2009-06-18T19:01:29Z 2009-06-18T20:23:33Z <p>I have an navigation-based app that I want to use the accelerometer to detect a shake and cause a scroll view to scroll to the next page. I have added accelerometer code to the view controller of my scrollView, and it works great; a shake calls my page change method. But when I unload the scrollViewController from the navigation stack the app crashes.</p> <p>I set up the accelerometer in the viewDidLoad method of the scrollViewController, and respond to a shake in the accelerometer: didAccelerate: delegate method.</p> <p>When the scrollViewController gets deallocated, the app crashes.</p> <p>What am I missing?</p> <p>Thanks</p>