Starting work on a li'l blinky project for Stephen

This commit is contained in:
Dan Buch 2013-12-29 09:27:14 -05:00
parent 79ef4e80b3
commit 10dde4da1a
2 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,15 @@
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);
}

View File

@ -0,0 +1 @@
../Makefile