Advertisement
Guest User

Untitled

a guest
May 18th, 2017
552
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 16.04 KB | None | 0 0
  1. // I2C device class (I2Cdev) demonstration Arduino sketch for MPU6050 class using DMP (MotionApps v2.0)
  2. // 6/21/2012 by Jeff Rowberg <jeff@rowberg.net>
  3. // Updates should (hopefully) always be available at https://github.com/jrowberg/i2cdevlib
  4. //
  5. // Changelog:
  6. // 2013-05-08 - added seamless Fastwire support
  7. // - added note about gyro calibration
  8. // 2012-06-21 - added note about Arduino 1.0.1 + Leonardo compatibility error
  9. // 2012-06-20 - improved FIFO overflow handling and simplified read process
  10. // 2012-06-19 - completely rearranged DMP initialization code and simplification
  11. // 2012-06-13 - pull gyro and accel data from FIFO packet instead of reading directly
  12. // 2012-06-09 - fix broken FIFO read sequence and change interrupt detection to RISING
  13. // 2012-06-05 - add gravity-compensated initial reference frame acceleration output
  14. // - add 3D math helper file to DMP6 example sketch
  15. // - add Euler output and Yaw/Pitch/Roll output formats-
  16. // 2012-06-04 - remove accel offset clearing for better results (thanks Sungon Lee)
  17. // 2012-06-01 - fixed gyro sensitivity to be 2000 deg/sec instead of 250
  18. // 2012-05-30 - basic DMP initialization working
  19.  
  20. /* ============================================
  21. I2Cdev device library code is placed under the MIT license
  22. Copyright (c) 2012 Jeff Rowberg
  23.  
  24. Permission is hereby granted, free of charge, to any person obtaining a copy
  25. of this software and associated documentation files (the "Software"), to deal
  26. in the Software without restriction, including without limitation the rights
  27. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  28. copies of the Software, and to permit persons to whom the Software is
  29. furnished to do so, subject to the following conditions:
  30.  
  31. The above copyright notice and this permission notice shall be included in
  32. all copies or substantial portions o+f the Software.
  33.  
  34. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  35. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  36. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  37. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  38. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  39. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  40. THE SOFTWARE.
  41. ===============================================
  42. */
  43.  
  44. // I2Cdev and MPU6050 must be installed as libraries, or else the .cpp/.h files
  45. // for both classes must be in the include path of your project
  46. #include "I2Cdev.h"
  47.  
  48. #include "MPU6050_6Axis_MotionApps20.h"
  49. //#include "MPU6050.h" // not necessary if using MotionApps include file
  50.  
  51. // Arduino Wire library is required if I2Cdev I2CDEV_ARDUINO_WIRE implementation
  52. // is used in I2Cdev.h
  53. #if I2CDEV_IMPLEMENTATION == I2CDEV_ARDUINO_WIRE
  54. #include "Wire.h"
  55. #endif
  56.  
  57. // class default I2C address is 0x68
  58. // specific I2C addresses may be passed as a parameter here
  59. // AD0 low = 0x68 (default for SparkFun breakout and InvenSense evaluation board)
  60. // AD0 high = 0x69
  61. MPU6050 mpu;
  62. //MPU6050 mpu(0x69); // <-- use for AD0 high
  63.  
  64. /* =========================================================================
  65. NOTE: In addition to connection 3.3v, GND, SDA, and SCL, this sketch
  66. depends on the MPU-6050's INT pin being connected to the Arduino's
  67. external interrupt #0 pin. On the Arduino Uno and Mega 2560, this is
  68. digital I/O pin 2.
  69. * ========================================================================= */
  70.  
  71. /* =========================================================================
  72. NOTE: Arduino v1.0.1 with the Leonardo board generates a compile error
  73. when using Serial.write(buf, len). The Teapot output uses this method.
  74. The solution requires a modification to the Arduino USBAPI.h file, which
  75. is fortunately simple, but annoying. This will be fixed in the next IDE
  76. release. For more info, see these links:
  77.  
  78. http://arduino.cc/forum/index.php/topic,109987.0.html
  79. http://code.google.com/p/arduino/issues/detail?id=958
  80. * ========================================================================= */
  81.  
  82.  
  83.  
  84. // uncomment "OUTPUT_READABLE_QUATERNION" if you want to see the actual
  85. // quaternion components in a [w, x, y, z] format (not best for parsing
  86. // on a remote host such as Processing or something though)
  87. //#define OUTPUT_READABLE_QUATERNION
  88.  
  89. // uncomment "OUTPUT_READABLE_EULER" if you want to see Euler angles
  90. // (in degrees) calculated from the quaternions coming from the FIFO.
  91. // Note that Euler angles suffer from gimbal lock (for more info, see
  92. // http://en.wikipedia.org/wiki/Gimbal_lock)
  93. //#define OUTPUT_READABLE_EULER
  94.  
  95. // uncomment "OUTPUT_READABLE_YAWPITCHROLL" if you want to see the yaw/
  96. // pitch/roll angles (in degrees) calculated from the quaternions coming
  97. // from the FIFO. Note this also requires gravity vector calculations.
  98. // Also note that yaw/pitch/roll angles suffer from gimbal lock (for
  99. // more info, see: http://en.wikipedia.org/wiki/Gimbal_lock)
  100. #define OUTPUT_READABLE_YAWPITCHROLL
  101.  
  102. // uncomment "OUTPUT_READABLE_REALACCEL" if you want to see acceleration
  103. // components with gravity removed. This acceleration reference frame is
  104. // not compensated for orientation, so +X is always +X according to the
  105. // sensor, just without the effects of gravity. If you want acceleration
  106. // compensated for orientation, us OUTPUT_READABLE_WORLDACCEL instead.
  107. //#define OUTPUT_READABLE_REALACCEL
  108.  
  109. // uncomment "OUTPUT_READABLE_WORLDACCEL" if you want to see acceleration
  110. // components with gravity removed and adjusted for the world frame of
  111. // reference (yaw is relative to initial orientation, since no magnetometer
  112. // is present in this case). Could be quite handy in some cases.
  113. //#define OUTPUT_READABLE_WORLDACCEL
  114.  
  115. // uncomment "OUTPUT_TEAPOT" if you want output that matches the
  116. // format used for the InvenSense teapot demo
  117. //#define OUTPUT_TEAPOT
  118.  
  119.  
  120.  
  121. #define INTERRUPT_PIN 2 // use pin 2 on Arduino Uno & most boards
  122. #define LED_PIN 13 // (Arduino is 13, Teensy is 11, Teensy++ is 6)
  123. bool blinkState = false;
  124.  
  125. // MPU control/status vars
  126. bool dmpReady = false; // set true if DMP init was successful
  127. uint8_t mpuIntStatus; // holds actual interrupt status byte from MPU
  128. uint8_t devStatus; // return status after each device operation (0 = success, !0 = error)
  129. uint16_t packetSize; // expected DMP packet size (default is 42 bytes)
  130. uint16_t fifoCount; // count of all bytes currently in FIFO
  131. uint8_t fifoBuffer[64]; // FIFO storage buffer
  132.  
  133. // orientation/motion vars
  134. Quaternion q; // [w, x, y, z] quaternion container
  135. VectorInt16 aa; // [x, y, z] accel sensor measurements
  136. VectorInt16 aaReal; // [x, y, z] gravity-free accel sensor measurements
  137. VectorInt16 aaWorld; // [x, y, z] world-frame accel sensor measurements
  138. VectorFloat gravity; // [x, y, z] gravity vector
  139. float euler[3]; // [psi, theta, phi] Euler angle container
  140. float ypr[3]; // [yaw, pitch, roll] yaw/pitch/roll container and gravity vector
  141.  
  142. // packet structure for InvenSense teapot demo
  143. uint8_t teapotPacket[14] = { '$', 0x02, 0,0, 0,0, 0,0, 0,0, 0x00, 0x00, '\r', '\n' };
  144.  
  145.  
  146.  
  147. // ================================================================
  148. // === INTERRUPT DETECTION ROUTINE ===
  149. // ================================================================
  150.  
  151. volatile bool mpuInterrupt = false; // indicates whether MPU interrupt pin has gone high
  152. void dmpDataReady() {
  153. mpuInterrupt = true;
  154. }
  155.  
  156.  
  157.  
  158. // ================================================================
  159. // === INITIAL SETUP ===
  160. // ================================================================
  161.  
  162. void setup() {
  163. // join I2C bus (I2Cdev library doesn't do this automatically)
  164. #if I2CDEV_IMPLEMENTATION == I2CDEV_ARDUINO_WIRE
  165. Wire.begin();
  166. Wire.setClock(400000); // 400kHz I2C clock. Comment this line if having compilation difficulties
  167. #elif I2CDEV_IMPLEMENTATION == I2CDEV_BUILTIN_FASTWIRE
  168. Fastwire::setup(400, true);
  169. #endif
  170.  
  171. // initialize serial communication
  172. // (115200 chosen because it is required for Teapot Demo output, but it's
  173. // really up to you depending on your project)
  174. Serial.begin(115200);
  175. while (!Serial); // wait for Leonardo enumeration, others continue immediately
  176.  
  177. // NOTE: 8MHz or slower host processors, like the Teensy @ 3.3v or Ardunio
  178. // Pro Mini running at 3.3v, cannot handle this baud rate reliably due to
  179. // the baud timing being too misaligned with processor ticks. You must use
  180. // 38400 or slower in these cases, or use some kind of external separate
  181. // crystal solution for the UART timer.
  182.  
  183. // initialize device
  184. Serial.println(F("Initializing I2C devices..."));
  185. mpu.initialize();
  186. pinMode(INTERRUPT_PIN, INPUT);
  187.  
  188. // verify connection
  189. Serial.println(F("Testing device connections..."));
  190. Serial.println(mpu.testConnection() ? F("MPU6050 connection successful") : F("MPU6050 connection failed"));
  191.  
  192. // wait for ready
  193. Serial.println(F("\nSend any character to begin DMP programming and demo: "));
  194. while (Serial.available() && Serial.read()); // empty buffer
  195. while (!Serial.available()); // wait for data
  196. while (Serial.available() && Serial.read()); // empty buffer again
  197.  
  198. // load and configure the DMP
  199. Serial.println(F("Initializing DMP..."));
  200. devStatus = mpu.dmpInitialize();
  201.  
  202. // supply your own gyro offsets here, scaled for min sensitivity
  203. mpu.setXGyroOffset(220);
  204. mpu.setYGyroOffset(76);
  205. mpu.setZGyroOffset(-85);
  206. mpu.setZAccelOffset(1788); // 1688 factory default for my test chip
  207.  
  208. // make sure it worked (returns 0 if so)
  209. if (devStatus == 0) {
  210. // turn on the DMP, now that it's ready
  211. Serial.println(F("Enabling DMP..."));
  212. mpu.setDMPEnabled(true);
  213.  
  214. // enable Arduino interrupt detection
  215. Serial.println(F("Enabling interrupt detection (Arduino external interrupt 0)..."));
  216. attachInterrupt(digitalPinToInterrupt(INTERRUPT_PIN), dmpDataReady, RISING);
  217. mpuIntStatus = mpu.getIntStatus();
  218.  
  219. // set our DMP Ready flag so the main loop() function knows it's okay to use it
  220. Serial.println(F("DMP ready! Waiting for first interrupt..."));
  221. dmpReady = true;
  222.  
  223. // get expected DMP packet size for later comparison
  224. packetSize = mpu.dmpGetFIFOPacketSize();
  225. } else {
  226. // ERROR!
  227. // 1 = initial memory load failed
  228. // 2 = DMP configuration updates failed
  229. // (if it's going to break, usually the code will be 1)
  230. Serial.print(F("DMP Initialization failed (code "));
  231. Serial.print(devStatus);
  232. Serial.println(F(")"));
  233. }
  234.  
  235. // configure LED for output
  236. pinMode(LED_PIN, OUTPUT);
  237. }
  238.  
  239.  
  240.  
  241. // ================================================================
  242. // === MAIN PROGRAM LOOP ===
  243. // ================================================================
  244.  
  245. void loop() {
  246. // if programming failed, don't try to do anything
  247. if (!dmpReady) return;
  248.  
  249. // wait for MPU interrupt or extra packet(s) available
  250. while (!mpuInterrupt && fifoCount < packetSize) {
  251. // other program behavior stuff here
  252. // .
  253. // .
  254. // .
  255. // if you are really paranoid you can frequently test in between other
  256. // stuff to see if mpuInterrupt is true, and if so, "break;" from the
  257. // while() loop to immediately process the MPU data
  258. // .
  259. // .
  260. // .
  261. }
  262.  
  263. // reset interrupt flag and get INT_STATUS byte
  264. mpuInterrupt = false;
  265. mpuIntStatus = mpu.getIntStatus();
  266.  
  267. // get current FIFO count
  268. fifoCount = mpu.getFIFOCount();
  269.  
  270. // check for overflow (this should never happen unless our code is too inefficient)
  271. if ((mpuIntStatus & 0x10) || fifoCount == 1024) {
  272. // reset so we can continue cleanly
  273. mpu.resetFIFO();
  274. Serial.println(F("FIFO overflow!"));
  275.  
  276. // otherwise, check for DMP data ready interrupt (this should happen frequently)
  277. } else if (mpuIntStatus & 0x02) {
  278. // wait for correct available data length, should be a VERY short wait
  279. while (fifoCount < packetSize) fifoCount = mpu.getFIFOCount();
  280.  
  281. // read a packet from FIFO
  282. mpu.getFIFOBytes(fifoBuffer, packetSize);
  283.  
  284. // track FIFO count here in case there is > 1 packet available
  285. // (this lets us immediately read more without waiting for an interrupt)
  286. fifoCount -= packetSize;
  287.  
  288. #ifdef OUTPUT_READABLE_QUATERNION
  289. // display quaternion values in easy matrix form: w x y z
  290. mpu.dmpGetQuaternion(&q, fifoBuffer);
  291. Serial.print("quat\t");
  292. Serial.print(q.w);
  293. Serial.print("\t");
  294. Serial.print(q.x);
  295. Serial.print("\t");
  296. Serial.print(q.y);
  297. Serial.print("\t");
  298. Serial.println(q.z);
  299. #endif
  300.  
  301. #ifdef OUTPUT_READABLE_EULER
  302. // display Euler angles in degrees
  303. mpu.dmpGetQuaternion(&q, fifoBuffer);
  304. mpu.dmpGetEuler(euler, &q);
  305. Serial.print("euler\t");
  306. Serial.print(euler[0] * 180/M_PI);
  307. Serial.print("\t");
  308. Serial.print(euler[1] * 180/M_PI);
  309. Serial.print("\t");
  310. Serial.println(euler[2] * 180/M_PI);
  311. #endif
  312.  
  313. #ifdef OUTPUT_READABLE_YAWPITCHROLL
  314. // display Euler angles in degrees
  315. mpu.dmpGetQuaternion(&q, fifoBuffer);
  316. mpu.dmpGetGravity(&gravity, &q);
  317. mpu.dmpGetYawPitchRoll(ypr, &q, &gravity);
  318. Serial.print("ypr\t");
  319. Serial.print(ypr[0] * 180/M_PI);
  320. Serial.print("\t");
  321. Serial.print(ypr[1] * 180/M_PI);
  322. Serial.print("\t");
  323. Serial.println(ypr[2] * 180/M_PI);
  324. #endif
  325.  
  326. #ifdef OUTPUT_READABLE_REALACCEL
  327. // display real acceleration, adjusted to remove gravity
  328. mpu.dmpGetQuaternion(&q, fifoBuffer);
  329. mpu.dmpGetAccel(&aa, fifoBuffer);
  330. mpu.dmpGetGravity(&gravity, &q);
  331. mpu.dmpGetLinearAccel(&aaReal, &aa, &gravity);
  332. Serial.print("areal\t");
  333. Serial.print(aaReal.x);
  334. Serial.print("\t");
  335. Serial.print(aaReal.y);
  336. Serial.print("\t");
  337. Serial.println(aaReal.z);
  338. #endif
  339.  
  340. #ifdef OUTPUT_READABLE_WORLDACCEL
  341. // display initial world-frame acceleration, adjusted to remove gravity
  342. // and rotated based on known orientation from quaternion
  343. mpu.dmpGetQuaternion(&q, fifoBuffer);
  344. mpu.dmpGetAccel(&aa, fifoBuffer);
  345. mpu.dmpGetGravity(&gravity, &q);
  346. mpu.dmpGetLinearAccel(&aaReal, &aa, &gravity);
  347. mpu.dmpGetLinearAccelInWorld(&aaWorld, &aaReal, &q);
  348. Serial.print("aworld\t");
  349. Serial.print(aaWorld.x);
  350. Serial.print("\t");
  351. Serial.print(aaWorld.y);
  352. Serial.print("\t");
  353. Serial.println(aaWorld.z);
  354. #endif
  355.  
  356. #ifdef OUTPUT_TEAPOT
  357. // display quaternion values in InvenSense Teapot demo format:
  358. teapotPacket[2] = fifoBuffer[0];
  359. teapotPacket[3] = fifoBuffer[1];
  360. teapotPacket[4] = fifoBuffer[4];
  361. teapotPacket[5] = fifoBuffer[5];
  362. teapotPacket[6] = fifoBuffer[8];
  363. teapotPacket[7] = fifoBuffer[9];
  364. teapotPacket[8] = fifoBuffer[12];
  365. teapotPacket[9] = fifoBuffer[13];
  366. Serial.write(teapotPacket, 14);
  367. teapotPacket[11]++; // packetCount, loops at 0xFF on purpose
  368. #endif
  369.  
  370. // blink LED to indicate activity
  371. blinkState = !blinkState;
  372. digitalWrite(LED_PIN, blinkState);
  373. }
  374. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement