Steps
Steps
Extract the zip file and copy the "ArduSpreadsheet" folder into your Arduino "tools" folder next to the
Arduino "libraries" folder. If the "tools" folder doesn't exist, then you can create it yourself.
On Windows:
C:\Users\<username>\Documents\Arduino\tools
On Mac:
/Users/<username>/Documents/Arduino/tools
Now restart your Arduino IDE, and you should see "ArduSpreadsheet" under the "Tools" menu.
You can use the Arduino Serial library to send data for logging.
The baud rate parameter has to match with the selection in the ArduSpreadsheet window.
void setup() {
Serial.begin(9600);
For column separation, you can pick one of the three symbols:
tab - '\t'
comma - ','
semicolon - ';'
You can indicate the end of the row by calling "Serial.println()" or printing out a newline
symbol '\n'.
Example
int rowCount = 500;
int rowNumber = 0;
void setup() {
Serial.begin(9600);
void loop() {
Serial.print(++rowNumber);
Serial.print('\t');
if (rowNumber % 2 == 0) {
Serial.print("even\t");
} else {
Serial.print("odd\t");
Serial.println(random(16000), HEX);
}
https://youtu.be/rT1CIa-ZiNo