Serial communication, (read, write from/to arduino ) on MATLAB Support Package for Arduino® Hardware

12 次查看(过去 30 天)
Hello there,
I'm trying for over a week now to find the proper way to read and write from/to arduino via Matlab. I am using the MATLAB Support Package for Arduino® Hardware, (the new one not legacy). If I am not mistaken in the legacy package the code for reading what was printed in the arduino IDE serial monitor was something like
s = serial (COM3)
fopen (s)
out = fscanf(s)
Is there a way to do the same thing with the new package and how?

采纳的回答

Pasc Peli
Pasc Peli 2016-8-21
Thank you for you quick reply. By "new" and "legacy" packages I mean this
"http://www.mathworks.com/hardware-support/arduino-matlab.html"
and this
"http://www.mathworks.com/matlabcentral/fileexchange/32374-legacy-matlab-and-simulink-support-for-arduino"
respectively.
Now, from what I understand, if i create an arduino object using
a = arduino ('COM3')
I can manipulate the pins, therefore the circuit, and it would be like matlab runs the "main" and arduino is just peripheral (an extention).
On the other hand if I create a serial object using
a = serial ('COM3')
fopen(s)
etc...
I would be able to read whatever the arduino print in its Serial Monitor but I won't be able to manipulate the i/o pins directly (I could to sent a command through the serial and then have the arduino do something when it receives that command). In this case I believe that the arduino is runing its code and matlab just observes.
I tried to implement both arduino and serial objects but I get an error saying that "COM 3 is in use by another object"
So, my questions are. 1) Am I right in my assumptions or have I misunderstood something 2) If I am right is there a way to observe the serial monitor by creating an arduino object
I would prefer to use Matlab code instead of simulink model.
Thank you in advance

更多回答(4 个)

Esther
Esther 2015-11-18
Hi, by new package do you mean Version 15.2.0 of the Arduino MATLAB Support Package, which ships Arduino 1.6.1?
  • I connected an Arduino Mega and tried on R2015b with that version installed.
  • Downloaded a Simulink model that tells the Arduino to send data from Analog Input Pin 0 to the serial port.
  • Then I read from the serial port:
s = serial
fopen(s)
fread(s)
ans =
160
72
75
48
254
Maybe this File Exchange submission will help.
  1 个评论
Pasc Peli
Pasc Peli 2015-11-18
Thank you for you quick reply. By "new" and "legacy" packages I mean this
"http://www.mathworks.com/hardware-support/arduino-matlab.html"
and this
"http://www.mathworks.com/matlabcentral/fileexchange/32374-legacy-matlab-and-simulink-support-for-arduino"
respectively.
Now, from what I understand, if i create an arduino object using
a = arduino ('COM3')
I can manipulate the pins, therefore the circuit, and it would be like matlab runs the "main" and arduino is just peripheral (an extention).
On the other hand if I create a serial object using
a = serial ('COM3')
fopen(s)
etc...
I would be able to read whatever the arduino print in its Serial Monitor but I won't be able to manipulate the i/o pins directly (I could to sent a command through the serial and then have the arduino do something when it receives that command). In this case I believe that the arduino is runing its code and matlab just observes.
I tried to implement both arduino and serial objects but I get an error saying that "COM 3 is in use by another object"
So, my questions are. 1) Am I right in my assumptions or have I misunderstood something 2) If I am right is there a way to observe the serial monitor by creating an arduino object
I would prefer to use Matlab code instead of simulink model.
Thank you in advance

请先登录,再进行评论。


Madhu Govindarajan
Madhu Govindarajan 2015-11-18
As far as I know there is no way to do both at the same time, as methods(a) on the arduino object does not give me anything that is along the lines of serial monitor. However, what is your use case for the serial monitor when you can monitor most of the Arduino pins using the necessary commands.
  1 个评论
Pasc Peli
Pasc Peli 2015-11-20
That's what i thought! I want to get the readings of multiple sensors, some connected in the analog IO pins with an simple voltage output and others more sophisticated like DHT which use their own libraries, and output a stream of bits.

请先登录,再进行评论。


Pasc Peli
Pasc Peli 2015-11-20
I think it's how arduino object works on matlab, but I dont believe that there is a function for read/write via serial.
If you guys can check it, just to be sure I'll be delighted!! thanks

Nouha Rouis
Nouha Rouis 2017-8-28
Hi guys, i want to send value from matlab to arduino, but it doesn't work ? Do you have any idea? thanks

类别

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

标签

产品

Community Treasure Hunt

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

Start Hunting!

Translated by