Hackster is hosting Hackster Holidays, Ep. 7: Livestream & Giveaway Drawing. Watch previous episodes or stream live on Friday!Stream Hackster Holidays, Ep. 7 on Friday!
Mahamudul Karim KhondakerDIYables
Published © CC BY-NC-ND

Arduino To Excel Communication

The easiest way: install Parallax then upload the Arduino code.

IntermediateProtip45,568
Arduino To Excel Communication

Things used in this project

Story

Read more

Schematics

arduino_with_resistor_fONGOlhZpk.jpg

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(1000);
}

Credits

Mahamudul Karim Khondaker
43 projects • 127 followers
Completed BSc at Electrical & Electronic Engineering (EEE) From United International University. Dhaka, Bangladesh
DIYables
0 projects • 80 followers
I would like to invite you to join and add your projects to DIYables platform https://www.hackster.io/diyables

Comments