void setup() {
// put your setup code here, to run once:
Serial.begin(9600); // opens serial communication line with 9600 bits/sec baud rate. (Note: There are 8-10 bits per alphanumeric character.)
}
void loop () {
// put your main code here, to run repeatedly:
// Print to serial monitor (starting a new line each time):
Serial.println("Howdy partner!");
delay(1000);
Serial.println("Yeehaw!");
delay(1000);
}