#include <Arduino.h>
// Define the LED pin
const int ledPin = 16;
// Setup function, runs once at startup
void setup() {
// Initialize the LED pin as an output
pinMode(ledPin, OUTPUT);
}
// Loop function, runs repeatedly after setup
void loop() {
// Turn the LED on (HIGH is the voltage level)
digitalWrite(ledPin, HIGH);
// Wait for a second
delay(1000);
// Turn the LED off (LOW is the voltage level)
digitalWrite(ledPin, LOW);
// Wait for a second
delay(1000);
}