Detect iPhone screen orientation - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T05:58:16Zhttp://stackoverflow.com/feeds/question/999686http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/999686/detect-iphone-screen-orientation2Detect iPhone screen orientationFarid2009-06-16T05:13:26Z2009-06-16T12:26:44Z
<p>I'm wanting to detect the orientation of the iPhone at 45 degree increments. Ideally I'd like to be able to get the angle of orientation along any axis.</p>
<p>The detection I need to do is similar to how Trism for the iPhone flashes an arrow towards the current bottom position of the screen when orientation changes.</p>
<p>I have some thing coded up but really don't understand how the accelerometer readings work and could use a nudge in the right direction. My current code logs the current angle but even when the phone is flat I get readings varying wildly a few times a second.</p>
<pre><code>- (void) checkOrientation:(UIAccelerometer*)accelerometer didAccelerate:(UIAcceleration*)acceleration
{
int accelerationX = acceleration.x * kfilteringFactor + accelerationX * (1.0 - kfilteringFactor);
int accelerationY = acceleration.y * kfilteringFactor + accelerationY * (1.0 - kfilteringFactor);
float currentRawReading = (atan2(accelerationY, accelerationX)) * 180/M_PI;
NSLog(@"Angle: %f",currentRawReading);
}
</code></pre>
<p>Sample from log while phone is flat:</p>
<pre><code>2009-06-16 17:29:07.987 [373:207] Angle: 0.162292
2009-06-16 17:29:07.994 [373:207] Angle: 179.838547
2009-06-16 17:29:08.014 [373:207] Angle: 179.836182
2009-06-16 17:29:08.032 [373:207] Angle: -90.000000
2009-06-16 17:29:08.046 [373:207] Angle: 179.890900
2009-06-16 17:29:08.059 [373:207] Angle: -90.000000
2009-06-16 17:29:08.074 [373:207] Angle: 179.917908
2009-06-16 17:29:08.088 [373:207] Angle: -179.950424
2009-06-16 17:29:08.106 [373:207] Angle: 90.000000
2009-06-16 17:29:08.119 [373:207] Angle: 90.000000
2009-06-16 17:29:08.134 [373:207] Angle: -179.720245
</code></pre>
http://stackoverflow.com/questions/999686/detect-iphone-screen-orientation/999899#9998993Answer by Andrew Pouliot for Detect iPhone screen orientationAndrew Pouliot2009-06-16T06:56:06Z2009-06-16T06:56:06Z<p>I think your problem is that you're using <code>int</code> variables when you want <code>float</code>.</p>
<p>I think the <code>accelerationX</code> and –Y should be instance variables and thus: </p>
<pre><code>accelerationX = acceleration.x * kfilteringFactor + accelerationX * (1.0 - kfilteringFactor);
accelerationY = acceleration.y * kfilteringFactor + accelerationY * (1.0 - kfilteringFactor);
</code></pre>
<p>Should give you more what you were looking for.</p>
http://stackoverflow.com/questions/999686/detect-iphone-screen-orientation/1001169#10011692Answer by Valerii Hiora for Detect iPhone screen orientationValerii Hiora2009-06-16T12:26:44Z2009-06-16T12:26:44Z<p>The reason is that you're using local variables, while they shouldn't be local.</p>
<p>Try to do the following:</p>
<p>Declare instance variables:</p>
<pre><code>@interface YourViewControllerClass: UIViewController {
float accelerationX, accelerationY;
}
...
other declarations
</code></pre>
<p>Update variables in accelerometer delegate: </p>
<pre><code> accelerationX = acceleration.x * kfilteringFactor + accelerationX * (1.0 - kfilteringFactor);
accelerationY = acceleration.y * kfilteringFactor + accelerationY * (1.0 - kfilteringFactor);
</code></pre>
<p>It should give more precise results without sudden jumps.</p>