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

12 views (last 30 days)
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?

Accepted Answer

Pasc Peli
Pasc Peli on 21 Aug 2016
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
  1 Comment
saif khalid
saif khalid on 18 Jan 2018
1.i think your assumptions is ok. 2. i think you can use USB for creating an arduino object and use bluetooth to observe the serial monitor

Sign in to comment.

More Answers (4)

Esther
Esther on 18 Nov 2015
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 Comment
Pasc Peli
Pasc Peli on 18 Nov 2015
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

Sign in to comment.


Madhu Govindarajan
Madhu Govindarajan on 18 Nov 2015
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 Comment
Pasc Peli
Pasc Peli on 20 Nov 2015
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.

Sign in to comment.


Pasc Peli
Pasc Peli on 20 Nov 2015
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 on 28 Aug 2017
Hi guys, i want to send value from matlab to arduino, but it doesn't work ? Do you have any idea? thanks

Categories

Find more on Arduino Hardware in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!