How to plot the real time data from arduino?

54 visualizaciones (últimos 30 días)
Tommy Fu
Tommy Fu el 12 de Jun. de 2019
Comentada: anil simsek el 6 de Mayo de 2020
I have an Arduino program loaded to the Arduino. I want to plot the real time data from arduino in the MATLAB too. My MATLAB program can get the data from the Arduino board and plot successfully. However, it seems the MATLAB will write something to the Arduino board to override the Arduino program. Is it true? If the answer is positive, may I have a help that how can I get the data from Arduino without affecting the Arduino program? (P.S. both Arduino program and MATLAB program will read the same pin such as A0). Many thanks!

Respuesta aceptada

Arun Kumar
Arun Kumar el 12 de Jun. de 2019
Hi Tommy,
Your observation is correct.
When you do a=arduino, an arduino server is built and is deployed to the hardware.
If you already have code running on arduino, I would suggest using serial read to read the data from serial port for plotting. Refer this page for details about reading data from com port.
  4 comentarios
Tommy Fu
Tommy Fu el 13 de Jun. de 2019
Thank You! I tried a simple code as below. The program in Arduino can run properly right now. However, no data is obtained at Matlab. May I have a help on this?
// ---- Arduino Code ----
void setup()
{
Serial.begin(9600);
}
void read_loop()
{
if(Serial.available()>0)
{
Serial.println(sol_amps);
}
}
% ----- MATLAB Code -----
s=serial('COM14','BaudRate',9600);
fopen(s);
go = true;
while go
readData=fscanf(s);
fprintf(s,readData);
end
fclose(s);
delete(s);
anil simsek
anil simsek el 6 de Mayo de 2020
I have Arduino code, I want to draw it instantly in matlab. Can you help me

Iniciar sesión para comentar.

Más respuestas (2)

Sylvain
Sylvain el 17 de En. de 2020
With a bit of delay, the issue is in your Arduino code:
Serial.available will return the number of bytes you can read. So you are telling your arduino to scan arriving signals:

anil simsek
anil simsek el 24 de Feb. de 2020
Hi. I have an arduino code like this. this code prints the number of passes of this object on the screen when an object passes in front of the sensor.I also have to create an instant graphical simulation in Matlab that instantly shows the total number of passes of the object.how do i do this in matlab? can you help me?
  1 comentario
anil simsek
anil simsek el 24 de Feb. de 2020
this is my arduino code;
//===============================
int ledpin=12;
bool turn=0;
int sayac=0;
void setup() {
Serial.begin(9600);
pinMode(2,INPUT);
pinMode(ledpin,OUTPUT);
attachInterrupt(0,kesme,RISING);
Serial.println("Started!!!");
}
void loop() {
digitalWrite(ledpin,LOW);
Serial.println(sayac);
turn =0;
}
void kesme() {
digitalWrite(ledpin,HIGH);
if(!turn)
sayac++;
while( digitalRead (2)==1){turn=1; }
Serial.println(sayac);
}
//===========================

Iniciar sesión para comentar.

Categorías

Más información sobre Arduino Hardware en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by