reading angle from mpu6050

조회 수: 11 (최근 30일)
gil joseph
gil joseph 2022년 5월 23일
답변: Hadi 2023년 9월 30일
Hey;
I have hard time in order to get the roll, pitch, yaw from the mpu6050 sensor and I hope someone can help me:
port='COM5';
board = 'Mega2560';
a = arduino(port,board,'Libraries','I2C');
fprintf("connected")
imu= mpu6050(a);
i=0;
while(1)
V = readAngularVelocity(imu);
x=V(1);
y=V(2);
z=V(3);
pitch = atan(x/sqrt((y*y) + (z*z)));
roll = atan(y/sqrt((x*x) + (z*z)));
yaw = atan(sqrt((x*x) + (y*y))/z);
pitch = pitch * (180/pi);
roll = roll * (180/pi);
yaw = yaw * (180/pi);
end

답변 (1개)

Hadi
Hadi 2023년 9월 30일
Hi You should use readAcceleration instead of readAngularVelocity.

카테고리

Help CenterFile Exchange에서 MATLAB Support Package for Arduino Hardware에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by