Graynomad:
You just read from one port and write to another, probably 20 lines of codesetup () {
Serial1.begin (115200);
Serial2.begin (9600);
}
loop () {
if (Serial1.available())
Serial2.write(Serial1.read());
}
Make that 8 lines :) ______ Rob
You may want to add the lines that define the pins used in the softserial library too ![]()