MPU6050 Arduino Uno Simulink
133 次查看(过去 30 天)
显示 更早的评论
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 个评论
Jose Hernandez
2020-12-12
编辑:Jose Hernandez
2020-12-12
@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
2023-9-30
Hi,
I had got the same problem.
I solved by used Stateflow block as describe at path below.
Best Regards.
回答(3 个)
Nathan Hardenberg
2023-2-2
编辑:Nathan Hardenberg
2023-2-2
- You need the "Simulink Support Package for Arduino Hardware" (Can be installed as Add-On)
- Use the "MPU6050 IMU Sensor"-Block from the Simulink library (or other sensorblock)
- Build a model like the one below. Here it just shows the values.
- Set the Model- and Hardware-Settings: Solver > Type > Fixed-step and Hardware Implementation > Hardware board > {choose_the_board_you_are_using}
- Wire your Ardunio (or other hardwareboard) correctly: Sensor connected to the I2C-Bus and VCC and GND to the Sensor
- Connect your Arduino to your PC with a USB-Cable
- 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.
!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 个评论
Thale
2023-6-26
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
2023-6-26
@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
Gurram
2023-6-26
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.
1 个评论
Thale
2023-6-27
Hi! Thank you for the answers. Yes, I now connected the way Gurram showed, and tried making my own function block for reading from the IMU (To solve the Status=32 issue Nathan was talking about), by changing the IMU-type in the existing matlab function block https://de.mathworks.com/matlabcentral/answers/1461574-sensor_init_error-mpu6050-imu-sensor-for-arduino-mega-2560-in-simulink.
When having made the function block though, I got a new error, similar to this post; https://se.mathworks.com/matlabcentral/answers/837698-mpu6050-pitch-and-roll-simulink-example-not-working-mpu6050-arduino-simulink-interface The solution was to download the add-on in matlab "MATLAB Support for MinGW-w64 C/C++ Compiler". After this it worked, and I was able to read the angles from the IMU.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Modeling 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!