Can i export the contents of excel to arduino? if yes, give a small explanation and functions used for doing the exporting job from excel sheet to arduino.
Sadly, most people on this forum lack telepathic abilities, so you'll have to give us some more information.
What data do you want to export? What format? What for?
Pieter
Basically no, well not in the sense you probably mean.
You could save the spread sheet as a csv file and then get a program on the computer to send the data in that file to the Arduino. I would write that program in Processing but you can use any language.
Then what are you going to do with the data when it arrives? Their is not much memory to store things.
Grumpy_Mike:
Basically no, well not in the sense you probably mean.
The Excel "XLSX" ("Office Open XML SpreadsheetML") format is an open standard and reading/writing that format is well supported by most languages. Perl, python, ruby -- whatever your preferred language is there's assuredly a simple way to read/write that file format. Converting to CSV is actually the more difficult way to do it.
whatever your preferred language is there's assuredly a simple way to read/write that file format
OK so what is it in an Arduino in C+ then, come on be helpful.
For receiving the data in the Arduino have a look at the examples in Serial Input Basics
...R