//Here i am using multiple serial events.
void setup()
{
Serial3.begin(9600);
Serial.begin(9600);
}
void loop() //normally this loop plays
{
Serial3.print("Serial3");
Serial.print("Serial0");
delay(1000);
}
void setup()
{
Serial3.begin(9600);
Serial.begin(9600);
}
void loop() //normally this loop plays
{
Serial3.print("Serial3");
Serial.print("Serial0");
delay(1000);
}