You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
box-o-sand/arduino/ConnecticutHalftime/ConnecticutHalftime.ino

16 lines
223 B

const unsigned int LED_PIN = 13;
const unsigned int PAUSE = 700;
void setup() {
pinMode(LED_PIN, OUTPUT);
}
void loop() {
digitalWrite(LED_PIN, HIGH);
delay(PAUSE);
digitalWrite(LED_PIN, LOW);
delay(PAUSE);
}