Created
September 28, 2017 13:22
-
-
Save pingud98/698df06ebbbb0a566b0f0fe5fc35a8d7 to your computer and use it in GitHub Desktop.
Create a 'bypass' on the serial port for Arduino.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//this can be used to test a uart connected GPS. | |
void setup() { | |
// initialize both serial ports: | |
Serial.begin(9600); | |
Serial1.begin(9600); | |
} | |
void loop() { | |
// read from port 1, send to port 0: | |
if (Serial1.available()) { | |
int inByte = Serial1.read(); | |
Serial.write(inByte); | |
} | |
// read from port 0, send to port 1: | |
if (Serial.available()) { | |
int inByte = Serial.read(); | |
Serial1.write(inByte); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment