Compensating compass lag with the gyroscope on iPhone 4

后端 未结 4 1762
逝去的感伤
逝去的感伤 2020-12-04 08:27

I\'ve been experimenting with the compass and gyroscope on iPhone 4 and would like some help with an issue I\'m having. I want to compensate for the slowness of the compass

相关标签:
4条回答
  • 2020-12-04 08:47

    Answer to question 1 is Yes, question 2 you are on the right track but you could use a variable name that is not 'horizontal', question 3 is answered by hotpaw2 and also a yaw in a chopper or helicopter at near zero altitude would alert the pilot with an alarm. There is a time lag because part of the software is local while there are other factors which can slow it down including access to a sensor for detecting magnetic waves, the device position and direction, preparing the graphic output for the compass display, computing and outputting data from the gyro and sensors through a relatively slow interface, using a general purpose handheld device not custom designed for the type of task being asked of it.

    0 讨论(0)
  • 2020-12-04 08:48

    Just trying to answer... correct me if i'm wrong..

    1.Yes you are on the right track

    2.gravity in CM is already "isolated" from user gravity (gravity value caused by user acceleration) thats why there is two gravity, the "gravity" and "userAcceleration" its on apple CM documentation // Note : not entirely isolated //

    3. if you have a gravity 0 it mean that the coresponding axis is perpendicular with gravity. gravity.z is the iPhone screen thats why it -9.82m/s2 if you put on the desk with screen upright, actualy it hard to get 0 or maximum value of the gravity due to the sensor noise (it's normal, all sensor has a noise expecially cheap sensor).

    what i do on my apps is I will switch my reference axis to other axis (in your case may be x or y) for certain limits, how the strategy is depend on the purpose or which side is your reference.

    the other thing is, gyro is fast but its not stable, you need to re-calibrate the value for several interval. In my case every 5 second. I've experiment with gyro for calculating angle between two plane, i try with exacly 90 degree ruler and it will give an error about 0.5 degree every second try and keep increasing, but thats is mine, maybe others have a better method for avoid the error.

    below is my steps "

    1. Init
    2. Read gravity XYZ -> Xg Yg Zg
    3. Check if Xg < 0.25 If TRUE try Yg then Zg // Note 1 = 1g = 9.82 m/s^2
    4. Read the compass and gyro
    5. Configure and calibrate the gyro using the compass and calulate based on which axis i use in point 3.
    6. If 5 second is pass then recalibrate, read the compass
    7. If the the difference with gyro reading is > 5 degree skip recalibartion the gyro.
    8. If the the difference with gyro reading is < 5 degree calibrate the gyro using compass value

    Note: for number 7 : is to check if the phone affected with magnetic field or near huge steel such or high voltage electrical line or in noisy and heavy equipment in factory plant.

    Thats all... Hope this could help you... And sorry for my english..

    0 讨论(0)
  • 2020-12-04 08:55

    Here is an example of an iPhone app where the compass get compensated with the gyroscope. Code and project can be seen here: http://www.sundh.com/blog/2011/09/stabalize-compass-of-iphone-with-gyroscope/

    0 讨论(0)
  • 2020-12-04 09:07

    The direction of the yaw axis vector is undefined when in zero gravity (or free fall, or close enough).

    In order to do synchronization while in motion, you need to create a filter for your "horizontal" value that has the same lag/delay response characteristics as the magnetic compass. Either that, or wait until motion stops long enough for both values to settle before recalculating the offset.

    0 讨论(0)
提交回复
热议问题