├── .gitignore ├── LICENSE ├── README.md ├── Ver_0_1b └── Gyro_header │ ├── Gyro_header.ino │ ├── gyro_accel.cpp │ └── gyro_accel.h └── Ver_0_2b └── Gyro_header ├── Gyro_header.ino ├── gyro_accel.cpp └── gyro_accel.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helscream/MPU6050_Arduino/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helscream/MPU6050_Arduino/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helscream/MPU6050_Arduino/HEAD/README.md -------------------------------------------------------------------------------- /Ver_0_1b/Gyro_header/Gyro_header.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helscream/MPU6050_Arduino/HEAD/Ver_0_1b/Gyro_header/Gyro_header.ino -------------------------------------------------------------------------------- /Ver_0_1b/Gyro_header/gyro_accel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helscream/MPU6050_Arduino/HEAD/Ver_0_1b/Gyro_header/gyro_accel.cpp -------------------------------------------------------------------------------- /Ver_0_1b/Gyro_header/gyro_accel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helscream/MPU6050_Arduino/HEAD/Ver_0_1b/Gyro_header/gyro_accel.h -------------------------------------------------------------------------------- /Ver_0_2b/Gyro_header/Gyro_header.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helscream/MPU6050_Arduino/HEAD/Ver_0_2b/Gyro_header/Gyro_header.ino -------------------------------------------------------------------------------- /Ver_0_2b/Gyro_header/gyro_accel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helscream/MPU6050_Arduino/HEAD/Ver_0_2b/Gyro_header/gyro_accel.cpp -------------------------------------------------------------------------------- /Ver_0_2b/Gyro_header/gyro_accel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helscream/MPU6050_Arduino/HEAD/Ver_0_2b/Gyro_header/gyro_accel.h --------------------------------------------------------------------------------