Skip to content

Instantly share code, notes, and snippets.

@rafacouto
Created October 5, 2015 01:01
Show Gist options
  • Save rafacouto/0c5127a48130bfe490c4 to your computer and use it in GitHub Desktop.
Save rafacouto/0c5127a48130bfe490c4 to your computer and use it in GitHub Desktop.
#define BAUDS 115200
void setup() {
Serial.begin(BAUDS);
Serial1.begin(BAUDS);
}
void loop() {
if (Serial.available())
Serial1.write(Serial.read());
if (Serial1.available())
Serial.write(Serial1.read());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment