Mahamudul Karim KhondakerDIYables
Published

Export Data from Arduino to Excel Sheet

Have you ever wanted to make a system that records sensor readings for future analysis? If so, that's exactly what we're about to do.

BeginnerProtip1 hour16,081
Export Data from Arduino to Excel Sheet

Things used in this project

Story

Read more

Schematics

graphic-01_I3Hw5E24GF.png

Code

Untitled file

C/C++
void setup(){
Serial.begin(9600);
Serial.println("CLEARDATA");
Serial.println("LABEL,Acolumn,Bcolumn,...");
Serial.println("RESETTIMER");
}
void loop(){
int sensorValue = analogRead(A0);
Serial.print("DATA,TIME,TIMER,");
Serial.println(sensorValue);
delay(1);
}

Credits

Mahamudul Karim Khondaker

Mahamudul Karim Khondaker

43 projects • 124 followers
Completed BSc at Electrical & Electronic Engineering (EEE) From United International University. Dhaka, Bangladesh
DIYables

DIYables

0 projects • 57 followers
I would like to invite you to join and add your projects to DIYables platform https://www.hackster.io/diyables

Comments