Different code however (it writes directly in binary some settings).
Put 470-1kohm resistors in series with Rx/Tx lines to be safe.
Troubleshooting serial is always a mess

Code: Select all
void setup() {
Serial1.begin(9600);
Serial.begin(115200);
delay(2000);
}
void loop() {
Serial.println("Hello World!!"); // prints out in terminal
Serial1.println("Hello World!!"); // Serial1_TX line LED blinks shortly once per second
delay(1000);
}
Thanks for everything friend.Pito wrote: Sun Apr 05, 2020 5:49 pm Great, even I recommended to you to better remove both delays() in the loop()![]()