element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • About Us
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
Arduino
  • Products
  • More
Arduino
Arduino Forum How do I figure out the orientation of a accellerometer?
  • Blog
  • Forum
  • Documents
  • Quiz
  • Events
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Arduino to participate - click to join for free!
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • State Verified Answer
  • Replies 4 replies
  • Answers 1 answer
  • Subscribers 392 subscribers
  • Views 852 views
  • Users 0 members are here
  • mpu-6050
  • accellerometer
  • arduino
Related

How do I figure out the orientation of a accellerometer?

kthomsen
kthomsen over 8 years ago

Hi,

 

I am trying to make my own "TrakDot" luggage tracking device, and for that I am gonna make the feature that disables all the antennas when the airplane leaves the ground (accelerates) and when it lands again (decelerates).

But since I don't have a lot of experience with accellerometers, I can't really figure out how to approach the following:

 

How can I figure out what orientation the accellerometer is in? I mean, if I put it in my suitcase, it could be pointing north, south, east, west, 45* angle or be upside down after the baggage-guys have thrown it around a few times.. How do I know/register that the airplane accelerates when I don't know if it's accelerating on X or Y or somewhere in between?

 

I am using the  MPU-6050MPU-6050 module which also has an integrated gyroscope maybe somehow that can help me determine on what axis I should measure the acceleration

 

Thanks!

-Kenneth

  • Sign in to reply
  • Cancel

Top Replies

  • dougw
    dougw over 8 years ago +1 suggested
    Interesting problem. The only constant acceleration is gravity, all other accelerations are transient, so when the acceleration doesn't change for long periods of time it means the bag is stationary or…
Parents
  • jdlui
    0 jdlui over 8 years ago

    I think you could probably use accelerometer data and write an algorithm to recognize something like a plane take off.

    If you are recording constantly and detect a period of consistent acceleration in one axis (the point where the plane accelerates on tarmac) and then sometime after that you detect acceleration in a different axis (the point where the plane leaves the ground), then you could pretty definitely label this as a takeoff event.

     

    If the Arduino/MCU keeps polling during flight and detects a pretty significant increase in g force, it could like the force of the plane touching down again. You'd just need to do some thresholding to make sure that turbulence during flight doesn't throw off your sensor.

     

    To answer your other question, determining position in space from accelerometer or gyro data is called dead reckoning. I've done this a bit with the Genuino 101, which has built in functions to basically do this for you. Doing this from scratch is a fairly involved process, because you need to figure out some algorithms for repeatedly doubly integrating the acceleration data to obtain position data and quaternion data. The Genuino 101 has built in accelerometer and gyroscope so that can basically prebuild the orientation functions. I tested this a bit when I reviewed the Genuino 101 for a roadtest image. Depending on the Arduino you use you may need to find some Arduino example code to get started.

     

    Hope this helps!

    Jordan

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
Reply
  • jdlui
    0 jdlui over 8 years ago

    I think you could probably use accelerometer data and write an algorithm to recognize something like a plane take off.

    If you are recording constantly and detect a period of consistent acceleration in one axis (the point where the plane accelerates on tarmac) and then sometime after that you detect acceleration in a different axis (the point where the plane leaves the ground), then you could pretty definitely label this as a takeoff event.

     

    If the Arduino/MCU keeps polling during flight and detects a pretty significant increase in g force, it could like the force of the plane touching down again. You'd just need to do some thresholding to make sure that turbulence during flight doesn't throw off your sensor.

     

    To answer your other question, determining position in space from accelerometer or gyro data is called dead reckoning. I've done this a bit with the Genuino 101, which has built in functions to basically do this for you. Doing this from scratch is a fairly involved process, because you need to figure out some algorithms for repeatedly doubly integrating the acceleration data to obtain position data and quaternion data. The Genuino 101 has built in accelerometer and gyroscope so that can basically prebuild the orientation functions. I tested this a bit when I reviewed the Genuino 101 for a roadtest image. Depending on the Arduino you use you may need to find some Arduino example code to get started.

     

    Hope this helps!

    Jordan

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
Children
No Data
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2025 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

ICP 备案号 10220084.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube