UART(COM port) baud rate converter? Help anyone?

You just read from one port and write to another, probably 20 lines of code

setup () {
   Serial1.begin (115200);
   Serial2.begin (9600);
}

loop () {
   if (Serial1.available())
       Serial2.write(Serial1.read());
}

Make that 8 lines :slight_smile:


Rob