Arduino and Simulink not working together over serial

조회 수: 21 (최근 30일)
Michael Schaja;Schaja
Michael Schaja;Schaja 2017년 10월 15일
댓글: Mada Nusa 2021년 12월 24일
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
Nicolas Schmit
Nicolas Schmit 2017년 10월 16일
What is the output type of imu.calcGyro(imu.gx)? Is it an integer? A float?
Michael Schaja;Schaja
Michael Schaja;Schaja 2017년 10월 16일
The output is a float.

댓글을 달려면 로그인하십시오.

답변 (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