How do we get startup messages from Blynk on an external display

The approach I’ve used in the past is to bridge the Rx and Tx pins on the board and run a sketch like this one…

The send_serial function captures the serial output to a variable, which in this case was sent to the terminal widget.
You have to remove the Rx Tx jumper before uploading new code via the USB port, but not for OTA updates.
Also, this line of code:
Serial.setRxBufferSize(1024);
is needed to ensure that you have a large enough buffer. Without it you can lose some of the serial output.

Pete.

2 Likes