An open API service indexing awesome lists of open source software.

https://github.com/eadf/mpu6050_dmp6_multiple

Temporary project
https://github.com/eadf/mpu6050_dmp6_multiple

Last synced: 10 months ago
JSON representation

Temporary project

Awesome Lists containing this project

README

          

# MPU6050_DMP6_Multiple
I will move this to https://github.com/jrowberg/i2cdevlib once this example is tested.

This example connects to two MPU6050. But it is possible to extend the example to connect to any number of accelerometers. Only the number of output GPIO pins sets the limit.

In the unaltered example you need to connect your MPU6050 AD0 pins to Arduino like this:
```
#define AD0_PIN_0 4 // Connect this pin to the AD0 pin on IMU #0
#define AD0_PIN_1 5 // Connect this pin to the AD0 pin on IMU #1
```
Note that the INT pin of the MPU6050 isn't used anymore.

To use this example you *must* checkout the develop branch of i2cdevlib:
```
cd i2cdevlib
git checkout develop
```
Make sure that the Arduino library manager uses the develop branch.