Skip to content

Instantly share code, notes, and snippets.

@nikitachukov
Created June 13, 2018 23:34
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 nikitachukov/e4c3538c72ff7f269cf6e78aef85259d to your computer and use it in GitHub Desktop.
Save nikitachukov/e4c3538c72ff7f269cf6e78aef85259d to your computer and use it in GitHub Desktop.
#include <Arduino.h>
void setup() {
Serial.begin(115200);
Serial.println("Booting");
}
void loop() {
while(Serial.available()){
Serial.write(Serial.read());
}
delay(10);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment