Arduino to Excel How do I do it?
hi!
im rather new arduino plattform , searching simple way data arduino excel later processing of data... how do it?
every suggestion welcomed. i´ve search on web far haven´t found anything...just few comment reading serial , pass way how do it?. in arduino software , in excel. or easier plot in processing? ...as in tutorial files
im rather new arduino plattform , searching simple way data arduino excel later processing of data... how do it?
every suggestion welcomed. i´ve search on web far haven´t found anything...just few comment reading serial , pass way how do it?. in arduino software , in excel. or easier plot in processing? ...as in tutorial files
one way data comma separated file (csv) on machine running excel , import file excel.
to send csv data using arduino serial, following:
serial.print(value1, dec); // send first value
serial.print(","); // separated comma
serial.print(value2, dec); // other values sent above
serial.print(",");
serial.print(value3, dec);
serial.println(); // print linefeed character
you can receive serial data using terminal program can save received data file (the file extension should .csv excel recognizes it).
google can give more detailed using search terms such csv excel import.
good luck
to send csv data using arduino serial, following:
serial.print(value1, dec); // send first value
serial.print(","); // separated comma
serial.print(value2, dec); // other values sent above
serial.print(",");
serial.print(value3, dec);
serial.println(); // print linefeed character
you can receive serial data using terminal program can save received data file (the file extension should .csv excel recognizes it).
google can give more detailed using search terms such csv excel import.
good luck
Arduino Forum > Forum 2005-2010 (read only) > Software > Interfacing > Arduino to Excel How do I do it?
arduino
Comments
Post a Comment