├── .gitignore ├── README.md ├── firmware ├── I2Cdev │ ├── I2Cdev.cpp │ ├── I2Cdev.h │ └── keywords.txt ├── MPU6050 │ ├── Examples │ │ ├── MPU6050_DMP6 │ │ │ ├── MPU6050_DMP6.ino │ │ │ └── Processing │ │ │ │ └── MPUTeapot.pde │ │ ├── MPU6050_raw │ │ │ └── MPU6050_raw.ino │ │ ├── MPU9150_AHRS.ino │ │ └── MPU9150_raw │ │ │ └── MPU9150_raw.ino │ ├── MPU6050.cpp │ ├── MPU6050.h │ ├── MPU6050_6Axis_MotionApps20.h │ ├── MPU6050_9Axis_MotionApps41.h │ └── helper_3dmath.h └── README.md └── hardware ├── README.md ├── mpu-9150_breakout.brd └── mpu-9150_breakout.sch /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/MPU-9150_Breakout/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/MPU-9150_Breakout/HEAD/README.md -------------------------------------------------------------------------------- /firmware/I2Cdev/I2Cdev.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/MPU-9150_Breakout/HEAD/firmware/I2Cdev/I2Cdev.cpp -------------------------------------------------------------------------------- /firmware/I2Cdev/I2Cdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/MPU-9150_Breakout/HEAD/firmware/I2Cdev/I2Cdev.h -------------------------------------------------------------------------------- /firmware/I2Cdev/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/MPU-9150_Breakout/HEAD/firmware/I2Cdev/keywords.txt -------------------------------------------------------------------------------- /firmware/MPU6050/Examples/MPU6050_DMP6/MPU6050_DMP6.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/MPU-9150_Breakout/HEAD/firmware/MPU6050/Examples/MPU6050_DMP6/MPU6050_DMP6.ino -------------------------------------------------------------------------------- /firmware/MPU6050/Examples/MPU6050_DMP6/Processing/MPUTeapot.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/MPU-9150_Breakout/HEAD/firmware/MPU6050/Examples/MPU6050_DMP6/Processing/MPUTeapot.pde -------------------------------------------------------------------------------- /firmware/MPU6050/Examples/MPU6050_raw/MPU6050_raw.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/MPU-9150_Breakout/HEAD/firmware/MPU6050/Examples/MPU6050_raw/MPU6050_raw.ino -------------------------------------------------------------------------------- /firmware/MPU6050/Examples/MPU9150_AHRS.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/MPU-9150_Breakout/HEAD/firmware/MPU6050/Examples/MPU9150_AHRS.ino -------------------------------------------------------------------------------- /firmware/MPU6050/Examples/MPU9150_raw/MPU9150_raw.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/MPU-9150_Breakout/HEAD/firmware/MPU6050/Examples/MPU9150_raw/MPU9150_raw.ino -------------------------------------------------------------------------------- /firmware/MPU6050/MPU6050.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/MPU-9150_Breakout/HEAD/firmware/MPU6050/MPU6050.cpp -------------------------------------------------------------------------------- /firmware/MPU6050/MPU6050.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/MPU-9150_Breakout/HEAD/firmware/MPU6050/MPU6050.h -------------------------------------------------------------------------------- /firmware/MPU6050/MPU6050_6Axis_MotionApps20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/MPU-9150_Breakout/HEAD/firmware/MPU6050/MPU6050_6Axis_MotionApps20.h -------------------------------------------------------------------------------- /firmware/MPU6050/MPU6050_9Axis_MotionApps41.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/MPU-9150_Breakout/HEAD/firmware/MPU6050/MPU6050_9Axis_MotionApps41.h -------------------------------------------------------------------------------- /firmware/MPU6050/helper_3dmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/MPU-9150_Breakout/HEAD/firmware/MPU6050/helper_3dmath.h -------------------------------------------------------------------------------- /firmware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/MPU-9150_Breakout/HEAD/firmware/README.md -------------------------------------------------------------------------------- /hardware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/MPU-9150_Breakout/HEAD/hardware/README.md -------------------------------------------------------------------------------- /hardware/mpu-9150_breakout.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/MPU-9150_Breakout/HEAD/hardware/mpu-9150_breakout.brd -------------------------------------------------------------------------------- /hardware/mpu-9150_breakout.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/MPU-9150_Breakout/HEAD/hardware/mpu-9150_breakout.sch --------------------------------------------------------------------------------