MPU6050 Arduino Uno Simulink

30 Ansichten (letzte 30 Tage)
Alexandros
Alexandros am 23 Jul. 2018
Kommentiert: omar am 18 Apr. 2025
I have a code to get the MPU6050 working using Matlab, but now I would like to run it on Simulink, but I keep hitting dead ends. Here is my Matlab code if anyone out there can help me:
%%setup
a=arduino;
mpu=i2cdev(a,'0x68');
writeRegister(mpu, hex2dec('B6'), hex2dec('00'), 'int16'); %reset
data=zeros(10000,14,'int8'); %prelocating
j=1;
%%loop
while(true)
x=1;
for i=59:72 % 14 Data Registers for Accel,Temp,Gyro
data(j,x)= readRegister(mpu, i, 'int8');
x=x+1;
end
y=swapbytes(typecast(data(j,:), 'int16'));
acc_x(j)=double(y(1));
acc_y(j)=double(y(2));
acc_z(j)=double(y(3));
j=j+1;
end
How can I write this in SIMULINK? The loop is the easy part, I can just put it into a Matlab function block (except for readRegister)... I just can't figure out the setup part in Simulink at all. I have tryed using the I2C Read block, but to no avail. Please help. And before you ask, I do have both the Arduino packages installed (for Matlab, and Simulink).
Again Please HELP!!!
  3 Kommentare
Jose Hernandez
Jose Hernandez am 12 Dez. 2020
Bearbeitet: Jose Hernandez am 12 Dez. 2020
@fatima zohra soussi Install and use Matlab 2020b, then install Arduino support package,then go to Simulink and go to Arduino blocks, go to sensors blocks and check which sensors are available ;)
Donny WARINT
Donny WARINT am 30 Sep. 2023

Melden Sie sich an, um zu kommentieren.

Antworten (3)

Gayatri Menon
Gayatri Menon am 4 Jan. 2022
Hi
You could use MPU6050 block in simulink to read data from MPU6050 sensor connected to Arduino. To use MATLAB function block to read data from sensors, please refer to the link here.
Hope this helps
Thanks
Gayatri
  1 Kommentar
Ana Luz Gómez Plata
Ana Luz Gómez Plata am 6 Jun. 2022
Sorry, do you know how to do it, I need help:(

Melden Sie sich an, um zu kommentieren.


Nathan Hardenberg
Nathan Hardenberg am 2 Feb. 2023
Bearbeitet: Nathan Hardenberg am 2 Feb. 2023
  1. You need the "Simulink Support Package for Arduino Hardware" (Can be installed as Add-On)
  2. Use the "MPU6050 IMU Sensor"-Block from the Simulink library (or other sensorblock)
  3. Build a model like the one below. Here it just shows the values.
  4. Set the Model- and Hardware-Settings: Solver > Type > Fixed-step and Hardware Implementation > Hardware board > {choose_the_board_you_are_using}
  5. Wire your Ardunio (or other hardwareboard) correctly: Sensor connected to the I2C-Bus and VCC and GND to the Sensor
  6. Connect your Arduino to your PC with a USB-Cable
  7. Now Klick Monitor & Tune in Simulink
The code will be generated and deployed on the hardware. Since this is in monitoring mode you can see the Simulink-model showing the sensor values. This allows easy debugging.
You can download an example model from here (this is also where the picture above is from).
!WARNING!
The "MPU6050 IMU Sensor"-Block seems to have an issue at the moment (see here). It reports the error status 32, even though the sensor works. Hopefully this will be fixed in a future update. Another IMU sensor that works is the MPU9250. But the given method is the same with this and other sensors as well.
  6 Kommentare
Thale
Thale am 26 Jun. 2023
Heyy!
How do you connect the MPU6050 to the arduino uno though? I get Status=32 when I monitor and tune the program. Have I connected it wrong to the ardouino maybe?
Thank you :)
Nathan Hardenberg
Nathan Hardenberg am 26 Jun. 2023
@Thale Eliassen Fink I think you did not read my answer fully! Check out the "!WARNING!" I wrote. This problem has no fix to my knowlege. It seems to work for @Gurram though. @Gurram are you using the MPU6050 Hardware Sensor? If so, this may be an issue with some hardware-boards/chips.
You could try to read out the data using the "I2C Read"-Block. But you have to check the datasheet for the right registers and convert the bytes to a double accordingly

Melden Sie sich an, um zu kommentieren.


Gurram
Gurram am 26 Jun. 2023
I have used the hardware sensor and got the output .
The output picture is available in thr above comment.
and these are the connections , i have done.
  3 Kommentare
Abdullah CAKAN
Abdullah CAKAN am 12 Mär. 2025
I did same with MPU6050, I got no errors but i got only zero in the display ports. I don't know what is wrong.
omar
omar am 18 Apr. 2025
@Abdullah CAKAN I have the same problem did you find a solution??

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Arduino Hardware finden Sie in Help Center und File Exchange

Produkte


Version

R2016a

Community Treasure Hunt

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

Start Hunting!

Translated by