const int ledPin = 13; // Define the LED pin
void setup() {
pinMode(ledPin, OUTPUT); // Set the LED pin as an output
Serial.begin(9600); // Initialize serial communication at 9600 bps
}
void loop() {
digitalWrite(ledPin, HIGH); // Turn the LED on
Serial.println("LED is ON!");
delay(1000); // Wait for 1 second
digitalWrite(ledPin, LOW); // Turn the LED off
Serial.println("LED is OFF!");
delay(1000); // Wait for 1 second
Serial.println(" The program is in line 16");
// Send blink status to the Serial Monitor
Serial.println("LED is blinking!");
delay(1000);
}