Mahamudul Karim KhondakerDIYables
Published © CC BY-NC-ND

Arduino To Excel Communication

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

IntermediateProtip45,305
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

Mahamudul Karim Khondaker

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

DIYables

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

Comments