mirror of
https://gitee.com/peng_zhihui/HoloCubic
synced 2025-11-04 21:19:40 +08:00
27 lines
341 B
C++
27 lines
341 B
C++
#include <I2Cdev.h>
|
|
#include <MPU6050.h>
|
|
|
|
#define IMU_I2C_SDA 32
|
|
#define IMU_I2C_SCL 33
|
|
|
|
class IMU
|
|
{
|
|
private:
|
|
MPU6050 imu;
|
|
int16_t ax, ay, az;
|
|
int16_t gx, gy, gz;
|
|
|
|
public:
|
|
void init();
|
|
|
|
void update();
|
|
|
|
int16_t getAccelX();
|
|
int16_t getAccelY();
|
|
int16_t getAccelZ();
|
|
|
|
int16_t getGyroX();
|
|
int16_t getGyroY();
|
|
int16_t getGyroZ();
|
|
|
|
}; |