9Axis IMU MPU9150 's library. This project is ported from this Arduino's project https://github.com/jrowberg/i2cdevlib/tree/master/Arduino/MPU9150. Connect pinName 27 to SCL, PinName 28 to SDA, GND to GND, and VOUT to VCC to try this library. The example is here

Dependencies:   ArduinoSerial I2Cdev

Dependents:   MPU9150_Example

Committer:
syundo0730
Date:
Mon Feb 01 16:13:13 2016 +0000
Revision:
1:1a6f1948f43d
added LICENSE file

Who changed what in which revision?

UserRevisionLine numberNew contents of line
syundo0730 1:1a6f1948f43d 1 /* ============================================
syundo0730 1:1a6f1948f43d 2 I2Cdev device library code is placed under the MIT license
syundo0730 1:1a6f1948f43d 3 Copyright (c) 2012 Jeff Rowberg
syundo0730 1:1a6f1948f43d 4
syundo0730 1:1a6f1948f43d 5 Permission is hereby granted, free of charge, to any person obtaining a copy
syundo0730 1:1a6f1948f43d 6 of this software and associated documentation files (the "Software"), to deal
syundo0730 1:1a6f1948f43d 7 in the Software without restriction, including without limitation the rights
syundo0730 1:1a6f1948f43d 8 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
syundo0730 1:1a6f1948f43d 9 copies of the Software, and to permit persons to whom the Software is
syundo0730 1:1a6f1948f43d 10 furnished to do so, subject to the following conditions:
syundo0730 1:1a6f1948f43d 11
syundo0730 1:1a6f1948f43d 12 The above copyright notice and this permission notice shall be included in
syundo0730 1:1a6f1948f43d 13 all copies or substantial portions of the Software.
syundo0730 1:1a6f1948f43d 14
syundo0730 1:1a6f1948f43d 15 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
syundo0730 1:1a6f1948f43d 16 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
syundo0730 1:1a6f1948f43d 17 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
syundo0730 1:1a6f1948f43d 18 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
syundo0730 1:1a6f1948f43d 19 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
syundo0730 1:1a6f1948f43d 20 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
syundo0730 1:1a6f1948f43d 21 THE SOFTWARE.
syundo0730 1:1a6f1948f43d 22 ===============================================
syundo0730 1:1a6f1948f43d 23 */