how plx-daq send data to arduino?
MR_Fahmy
Posts: 3
Hi,
I'm using Arduino uno and Plx-daq to get data aquisition. I'm also using LCD 2x16 in displaying
there's no problem with sending data FROM arduino TO plx-daq..
but now i want send data FROM excel TO arduino. and then i want to display it in LCD.
I have tried using Serial.println("CELL,GET,A2"); //A2 is the cell i want to retrieve the data//
fyi, i'm using ms. excel 2010
is it possible to send data from excel to arduino?
how's it like? using serial.read()?
what's the code to send data from excel to arduino?
i'm very pleasant if you can help me.
thanks.
regards, MR_Fahmy.
I'm using Arduino uno and Plx-daq to get data aquisition. I'm also using LCD 2x16 in displaying
there's no problem with sending data FROM arduino TO plx-daq..
but now i want send data FROM excel TO arduino. and then i want to display it in LCD.
I have tried using Serial.println("CELL,GET,A2"); //A2 is the cell i want to retrieve the data//
fyi, i'm using ms. excel 2010
is it possible to send data from excel to arduino?
how's it like? using serial.read()?
what's the code to send data from excel to arduino?
i'm very pleasant if you can help me.
thanks.
regards, MR_Fahmy.
Comments
i'm little bit confuse about this. ....DEBUGIN DEC cellval ---> Accept cell value into variables
what's the different with command "CELL,GET,A2"?
can i get link where i can get this stuff?
thanks
Serial.println("CELL,GET,E3,");
cell_num=Serial.parseInt();// this command reads the sell value from the specified cell
//now return this namber to EXCELL:
Serial.print("DATA,TIME,");
Serial.print(cell_num);
Serial.print(",");
Good luck