Arduino and Simulink not working together over serial

I am trying to read arduino produced gyro data into simulink but am having major troubles doing so.
This is my arduino code that prints out the gyro data. This is working properly as you can see in the first image this is my serial plotter, which is giving correct data. I know it is just a decoding error in simulink. I have searched everywhere for a solution but so far have come up empty. If you have any ideas on how to fix this please reply.
Serial.print(imu.calcGyro(imu.gx), 2);
Serial.print('\n');
This image is my scope on simulink. The data is completely useless.
This is what I have in simulink. The Baud rate and everything is correct and matches what I have in my arduino code. I have tried it with and without the ASCII decoder block and have gotten similar results.
This is my settings in Serial Receive block in simulink.
This is my settings in ASCII decode block in simulink.
This is my settings in Serial Configuration block in simulink.

2 Commenti

What is the output type of imu.calcGyro(imu.gx)? Is it an integer? A float?
The output is a float.

Accedi per commentare.

Risposte (3)

Here is an example of code on the Arduino side that casts at float into an array of bytes then sends it over the serial port.
typedef union
{
float number;
uint8_t bytes[4];
} FLOATUNION_t;
FLOATUNION_t myFloat;
void setup() {
// initialize serial:
Serial.begin(9600);
// reserve 200 bytes for the inputString:
}
void loop()
{
// Send a float
myFloat.number = -1.234;
for (int i=0; i<4; i++)
{
Serial.write(myFloat.bytes[i]);
}
Serial.print('\n');
delay(1000);
}
On the Simulink side, when using the Serial Receive block, set the Data Type to "single" so that MATLAB casts the bytes array back to a float.

3 Commenti

How can I adapt this to send uint16_t over Serial? Thanks
Can i use this to read multiple sensor form serial monitor. For an example i have 3 thermocouples to read. From your code i have succesfully read 1 thermocouple. Now I want to try to read 3 thermocouples at the same time. Is it possible?
So I have same case with you, sending three yaw, pitch, roll from IMU to Simulink. Use "DEMUX" block to parting those data. Thank's

Accedi per commentare.

Hi Michael,
Have you tried sending data using Serial.write()?
Also, check out the Serial Receive block from the Support Package for Arduino Hardware. I believe that is specifically designed for Arduino hardware.
Nicolas Schmit
Nicolas Schmit il 19 Ott 2017
Modificato: Nicolas Schmit il 19 Ott 2017
The block https://www.mathworks.com/help/supportpkg/arduino/ref/serialreceive.html is used to receive data from the serial port on the Arduino side, when generating Arduino code from Simulink. Its purpose is not to receive data on the Simulink side.
To receive data on the Simulink side, you can.
  • Use the Serial Receive block from the Instrument Control Toolbox.
  • Establish a serial connection with the serial() command inside a S-Function

Categorie

Scopri di più su MATLAB Support Package for Arduino Hardware in Centro assistenza e File Exchange

Prodotti

Commentato:

il 24 Dic 2021

Community Treasure Hunt

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

Start Hunting!

Translated by