Arduino and Simulink not working together over serial

19 次查看(过去 30 天)
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.

回答(3 个)

Nicolas Schmit
Nicolas Schmit 2017-10-19
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 个评论
Nazmi Rosly
Nazmi Rosly 2021-8-24
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?
Mada Nusa
Mada Nusa 2021-12-24
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

请先登录,再进行评论。


Prashant Arora
Prashant Arora 2017-10-18
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 2017-10-19
编辑:Nicolas Schmit 2017-10-19
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

类别

Help CenterFile Exchange 中查找有关 Modeling 的更多信息

产品

Community Treasure Hunt

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

Start Hunting!

Translated by