Error using mpu6050 Too many input arguments. Error in line 3: imu = mpu6050(a,'SampleRate',50,'SamplesPerRead',10,'ReadMode','Latest'); How can I solved it?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
WAN NOR NAZIRA MUSTAPA KAMAL
le 3 Fév 2021
Commenté : WAN NOR NAZIRA MUSTAPA KAMAL
le 3 Fév 2021
function [] = i2c_sensor()
a = arduino('COM3', 'UNO');
imu = mpu6050(a,'SampleRate',50,'SamplesPerRead',10,'ReadMode','Latest');
xlabel('Time (s)');
ylabel('Acceleration (m/s^2)');
title('Acceleration values from mpu6050');
hx_val = animatedline('Color','r');
hy_val = animatedline('Color','g');
hz_val = animatedline('Color','b');
for i=1:10
accelReadings(i,:) = readAcceleration(imu);
t(i)=10
display(accelReadings(i,:));
addpoints(hx_val, t(i),accelReadings(i,1));
addpoints(hy_val, t(i),accelReadings(i,2));
addpoints(hz_val, t(i),accelReadings(i,3));
drawnow
pause(1);
end
end
2 commentaires
Walter Roberson
le 3 Fév 2021
Which MATLAB release are you using? What shows up for
which mpu6050(a)
The options you are using should be valid as far back as when mpu6050 was introduced in R2019a, so it is not obvious to me why you are getting that error.
Réponses (0)
Voir également
Catégories
En savoir plus sur Particle & Nuclear Physics dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!