Skip to content

Instantly share code, notes, and snippets.

@manashmandal
Created May 22, 2016 13:07
Show Gist options
  • Save manashmandal/bb9c599513f417f127d7d1492f594875 to your computer and use it in GitHub Desktop.
Save manashmandal/bb9c599513f417f127d7d1492f594875 to your computer and use it in GitHub Desktop.
#define BAUD 9600
void setup(){
Serial.begin(BAUD);
}
void loop(){
Serial.println("Hello From Arduino");
delay(5000);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment