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,229
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
43 projects • 129 followers
Completed BSc at Electrical & Electronic Engineering (EEE) From United International University. Dhaka, Bangladesh
Contact
DIYables
0 projects • 88 followers
I would like to invite you to join and add your projects to DIYables platform https://www.hackster.io/diyables
Contact

Comments

Please log in or sign up to comment.