Add the following snippet to your HTML:<iframe frameborder='0' height='385' scrolling='no' src='https://www.hackster.io/m_karim02/arduino-to-excel-communication-08a58b/embed' width='350'></iframe>
The easiest way: install Parallax then upload the Arduino code.
Read up about this project on
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); }
Please log in or sign up to comment.
Comments
Please log in or sign up to comment.