Created
September 30, 2015 19:11
-
-
Save lmccart/94c378bd820804fd2971 to your computer and use it in GitHub Desktop.
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
int ledPin = 13; // LED connected to digital pin 13 | |
int inPin = 7; // pushbutton connected to digital pin 7 | |
int val = 0; // variable to store the read value | |
void setup() { | |
Serial.begin(9600); | |
pinMode(ledPin, OUTPUT); // sets the digital pin 13 as output | |
pinMode(inPin, INPUT); // sets the digital pin 7 as input | |
} | |
void loop() { | |
val = digitalRead(inPin); // read the input pin | |
digitalWrite(ledPin, val); // sets the LED to the button's value | |
Serial.write(val); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment