Skip to content

Instantly share code, notes, and snippets.

@lomassubedi
Created February 25, 2019 06:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lomassubedi/4fed72cafeee564c2d1b1b3c2eaf2f24 to your computer and use it in GitHub Desktop.
Save lomassubedi/4fed72cafeee564c2d1b1b3c2eaf2f24 to your computer and use it in GitHub Desktop.
void setup() {
Serial.begin(115200);
}
void loop() {
while(Serial.available() > 0) {
Serial.write(Serial.read());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment