/* In this demo, we use Serial and Serial1
* Serial and Serial1 send to each other
// initialize both serial ports:
// read from port 1, send to port 0:
if (Serial1.available()) {
int inByte = Serial1.read();
// read from port 0, send to port 1:
if (Serial.available()) {
int inByte = Serial.read();