esp32-i2c-mpu6050
esp32-i2c-mpu6050 copied to clipboard
ESP32 I2C MPU6050 driver for esp-idf
A great contribution. I have tried to build this source but I got some error. > make menuconfig and change the default serial port to /dev/ttyUSB0 but every time I...
> README.md > ESP32 I2C MPU6050 driver for esp-idf > > It uses hardware I2C port. So you can at most connect two sensors on the same chip with different...
Datasheet says (page 17): > Gyroscope Sample Rate, Fast: 8 kHz > Accelerometer Sample Rate: 1 kHz What if we read only what matters? For example, if we read all...
r[0] ?
In mpu6050.cpp, line 70 you declare `uint8_t r[0];` and then you read 2 bytes into it. I don't really understand what's happening here. Could you please explain what's going on?...