if change code this output comes after 10 times correct it starts show only h again and again.
![]()
ÿhello
hello
hello
hello
hello
hello
hello
hello
hello
hello
helhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh
void setup()
{
 Serial.begin(9600);
 Serial1.begin(9600);
}
void loop()
 {
 Serial1.println("hello");
 Serial.write(Serial1.read());
 delay(1000);
 }