void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
Serial.println("starting Simple UART test");
}
void loop() {
// put your main code here, to run repeatedly:
Serial.print("My Name is Ralph ");
delay(1000);
Serial.println("Turchiano");
delay(1000);
}
#UART #Debugging #Microprocessor