hello,
how can i see serial monitor of serial3 ?
hello,
how can i see serial monitor of serial3 ?
i am using the 4 serials but need to monitor serial 3 only how can i do so ?
I just told you. If you follow those instructions and encounter a problem then you will need to provide detailed information so we can help you.
samarhefina:
hello,how can i see serial monitor of serial3 ?
Let's assume, you have connected a GPS module to Serial3:
You could read incoming characters from Serial3 and write them back to Serial.
void loop()
{
if(Serial3.available()) Serial.write(Serial3.read());
}
That way you ca redirect incoming chars from the GPS module to the serial monitor