SENSOR_INIT_ERROR: MPU6050 IMU Sensor for Arduino Mega 2560 in Simulink
54 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
MATLAB 2021a, Simulink 10.3
Hello,
I have a problem with the Simulink block "MPU6050 IMU Sensor" from the Simulink Support Package for Arduino Hardware (version 21.1.2). The Arduino Mega 2560 is connected to the MPU-6050 sensor and the upload of the Simulink model works. However, the value 32 (SENSOR_INIT_ERROR) appears over the status output of the MPU6050 IMU Sensor block, so no measurements are displayed to me.
Do I have to initialize the sensor by myself before? If yes, how does this work?
Many thanks and best regards.
1 Commento
Arun Kumar
il 30 Set 2021
Hi Max,
You don't have to initialize the sensor manually. Sensor initialization is done by the generated code. Sensor init error could be due to wrong sensor id. This block expects the WHO_AM_I register to be 0x48.
Thanks,
Arun
Risposte (4)
Donny WARINT
il 30 Set 2023
Hi,
I have got the same problem.
I solve by used Stateflow block as describe at path below.
Best Regards.
0 Commenti
Nathan Hardenberg
il 2 Feb 2023
I tried the same thing and got the same problem. I tested with an Arduino Mega and UNO. Both had the same problem! With the MATLAB Hardware Support package (not Simulink) reading out the sensor worked fine.
This leaves me to believe that there is an error with the Simulink-Block for the MPU6050.
Matlab Version: R2022a | Windows 11 | Simulink Support Package for Arduino Hardware: Version 22.1.5
A workaround is buying/using another IMU. I Bought the MPU-9250 and it worked like expected! You just have to choose the MPU9250-Block in Simulink.
1 Commento
Utonna Udochi
il 18 Nov 2024 alle 16:02
I think you only need to switch the SIMULINK block. I read values from my 6050 with the 9250 block.
Matlab Version: R2024b
Ivano Falco
il 4 Feb 2023
Try to 'Run with IO'
1 Commento
Nathan Hardenberg
il 6 Feb 2023
I tried it with IO. But I got the same error result.
I also want to run my model on the Arduino later. Then running in IO would defeat the purpose.
Gayatri Menon
il 9 Giu 2023
Hi,
If you have MATLAB support package for Arduino installed, can you try using the below MATLAB IO workflow
>> a = arduino
>> imu = mpu6050(a)
>> imu.readAcceleration
Documentation on MPU6050 - MATLAB
If the above works for the sensor, then you can use MATLAB function block in Simulink to generate code to read data from sensor and run your code in Arduino.
Here is an example that shows this workflow with MPU9250: https://in.mathworks.com/help/supportpkg/arduino/ref/pitch-roll-calculation-arduino-imu-sensor.html
Note : Open the model in Simulink. Double click the MATLAB function block to view the code. Modify the function to read data from MPU6050 instead of MPU9250 (mpu9250(a) -> mpu6050(a)) and remove the code that is not relevant for you before trying build and deployment)
Hope this helps
Thanks
Gayatri
1 Commento
Thale
il 26 Giu 2023
I tried this for the mpu6050, and with an arduino Uno. sadly it didnt work. How would you do it, if you just want to read angular rate from the imu?
Vedere anche
Categorie
Scopri di più su Modeling in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!