Skip to content

Commit bd1135e

Browse files
committed
Added SerialPassthrough sketch to communication examples
1 parent f0e5c90 commit bd1135e

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
/*
2+
SerialPassthrough sketch
3+
4+
Some boards, like the Arduino 101, the MKR1000, Zero, or the Micro,
5+
have one hardware serial port attached to Digital pins 0-1, and a
6+
separate USB serial port attached to the IDE Serial Monitor.
7+
This means that the "serial passthrough" which is possible with
8+
the Arduino UNO (commonly used to interact with devices/shields that
9+
require configuration via serial AT commands) will not work by default.
10+
11+
This sketch allows you to emulate the serial passthrough behaviour.
12+
Any text you type in the IDE Serial monitor will be written
13+
out to the serial port on Digital pins 0 and 1, and vice-versa.
14+
15+
On the 101, MKR1000, Zero, and Micro, "Serial" refers to the USB Serial port
16+
attached to the Serial Monitor, and "Serial1" refers to the hardware
17+
serial port attached to pins 0 and 1. This sketch will emulate Serial passthrough
18+
using those two Serial ports on the boards mentioned above,
19+
but you can change these names to connect any two serial ports on a board
20+
that has multiple ports.
21+
22+
Created 23 May 2016
23+
by Erik Nyquist
24+
*/
25+
26+
void setup() {
27+
Serial.begin(9600);
28+
Serial1.begin(9600);
29+
}
30+
31+
void loop() {
32+
if (Serial.available()) { // If anything comes in Serial (USB),
33+
Serial1.write(Serial.read()); // read it and send it out Serial1 (pins 0 & 1)
34+
}
35+
36+
if (Serial1.available()) { // If anything comes in Serial1 (pins 0 & 1)
37+
Serial.write(Serial1.read()); // read it and send it out Serial (USB)
38+
}
39+
}

0 commit comments

Comments
 (0)