Created
November 15, 2011 10:59
-
-
Save mactkg/1366785 to your computer and use it in GitHub Desktop.
push
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#define LED 13 | |
#define BUTTON 7 | |
int val; | |
void setup(){ | |
pinMode(LED, OUTPUT); | |
pinMode(BUTTON, INPUT); | |
} | |
void loop(){ | |
val = digitalRead(BUTTON); | |
if(val == HIGH){ | |
digitalWrite(LED, HIGH); | |
}else{ | |
digitalWrite(LED, LOW); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment