saumik02

Results 2 issues of saumik02

which direction should i mount the GPS . What is the relation to the axis of mpu6050?

this is my code below: #include "MPU9250.h" MPU9250 IMU(Wire,0x68); float magnetom[3]; void read_sensors() { IMU.readSensor(); magnetom[0] = IMU.getMagX_uT(); magnetom[1] = IMU.getMagY_uT(); magnetom[2] = IMU.getMagZ_uT(); } void sendToPC(float* data1, float* data2,...