#ifndef AHRS_H #define AHRS_H #include "itg3200.h" #include "bma150.h" class AHRS { public: ITG3200 gyro; BMA150 accel; AHRS(I2C& i2c) : gyro(i2c), accel(i2c) {} void init() { gyro.init(); accel.init(); } void update() { gyro.update(); accel.update(); } }; #endif