How to use Arduino code written in Arduino IDE file in MATLAB? How does it work?

조회 수: 179 (최근 30일)
An Gie Lo
An Gie Lo 2018년 5월 20일
댓글: Purvi 2023년 1월 3일
Greetings. I came across with this project:
In the link, two files were provided: one for matlab, one for arduino. The programmers used the centroid extracted from the face detected and tracked in matlab, and sent the coordinates to arduino to control the servos.
My question is: 1. How does the fopen(arduino) work? How does matlab know which arduino code file to access?

답변 (2개)

Ameer Hamza
Ameer Hamza 2018년 5월 20일
MATLAB does not need to know which Arduino sketch file you are using. Here is the procedure of what you need to do.
  1. You will first program your Arduino board, with the given code, using Arduino IDE. Download the Arduino code, open the Arduino IDE and create a new file and paste the downloaded code in the new file. Upload the program to the Arduino board.
  2. Note the port number for Arduino board from the Arduino IDE. Go to Tools menu > Port and note the port number such as COMx.
  3. After uploading the code, keep the Arduino connected using USB cable and open MATLAB.
  4. In the MATLAB code change the line
arduino=serial('COM6','BaudRate',9600);
and change COM6 to COMx you noted from MATLAB.
Now when you run the MATLAB code, it will communicate with the Arduino.
  댓글 수: 2
amin ya
amin ya 2019년 5월 19일
So in this workflow it is possible to program Arduino hybridly? Both coding in native IDE and MATLAB?
Purvi
Purvi 2023년 1월 3일
I did the same but i didnt get the desired output. What should i do?

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


Eugenio Anselmino
Eugenio Anselmino 2020년 9월 1일
I don't think is possible to write hybrid code, you have two solution in my opinion:
1) write everything in matlab: performances arent great, but you can comunicate with the board very easily and in real time.
2) write everything in arduino and comunicate to the board through the COM port as shown by Ameer: it's faster, but less easy to do.
  댓글 수: 2
Ngcebo Shezi
Ngcebo Shezi 2022년 9월 14일
how do i convert the arduino code from arduino ide to matlab is that possible. my problem is that i dont know how to code using matlab
Rodrigo Oliveira
Rodrigo Oliveira 2022년 10월 21일
편집: Rodrigo Oliveira 2022년 10월 21일
There is a somewhat simple solution: use command lines executed from MATLAB. By using Arduino CLI you can execute the files you made with Arduino IDE just from the terminal itself. Now, using MATLAB function "system" you can execute commands like so:
sytem('cd Documents/MyArduinoDir')
Executing the command: system('arduino-cli upload yourfile.ino') executes the code you built. MATLAB is free to continue down its commands on the .m script while the 'yourfile.ino' is still running.

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

카테고리

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