├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── custom.md │ └── feature_request.md └── workflows │ ├── run-ci-arduino.yml │ ├── stale.yml │ └── sync_issues.yml ├── .gitignore ├── .travis.yml ├── BMP180.cpp ├── BMP180.h ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── I2Cdev.cpp ├── I2Cdev.h ├── LICENSE ├── MPU9250.cpp ├── MPU9250.h ├── README.md └── examples └── IMU_10DOF_Test └── IMU_10DOF_Test.ino /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/Seeed_Arduino_IMU10DOF/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/Seeed_Arduino_IMU10DOF/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/Seeed_Arduino_IMU10DOF/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/run-ci-arduino.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/Seeed_Arduino_IMU10DOF/HEAD/.github/workflows/run-ci-arduino.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/Seeed_Arduino_IMU10DOF/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.github/workflows/sync_issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/Seeed_Arduino_IMU10DOF/HEAD/.github/workflows/sync_issues.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/Seeed_Arduino_IMU10DOF/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/Seeed_Arduino_IMU10DOF/HEAD/.travis.yml -------------------------------------------------------------------------------- /BMP180.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/Seeed_Arduino_IMU10DOF/HEAD/BMP180.cpp -------------------------------------------------------------------------------- /BMP180.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/Seeed_Arduino_IMU10DOF/HEAD/BMP180.h -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/Seeed_Arduino_IMU10DOF/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/Seeed_Arduino_IMU10DOF/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /I2Cdev.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/Seeed_Arduino_IMU10DOF/HEAD/I2Cdev.cpp -------------------------------------------------------------------------------- /I2Cdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/Seeed_Arduino_IMU10DOF/HEAD/I2Cdev.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/Seeed_Arduino_IMU10DOF/HEAD/LICENSE -------------------------------------------------------------------------------- /MPU9250.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/Seeed_Arduino_IMU10DOF/HEAD/MPU9250.cpp -------------------------------------------------------------------------------- /MPU9250.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/Seeed_Arduino_IMU10DOF/HEAD/MPU9250.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/Seeed_Arduino_IMU10DOF/HEAD/README.md -------------------------------------------------------------------------------- /examples/IMU_10DOF_Test/IMU_10DOF_Test.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/Seeed_Arduino_IMU10DOF/HEAD/examples/IMU_10DOF_Test/IMU_10DOF_Test.ino --------------------------------------------------------------------------------