Skip to content

Instantly share code, notes, and snippets.

Created March 30, 2017 22:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/d714e491f22fda1c42dd78f9e92b5eb4 to your computer and use it in GitHub Desktop.
Save anonymous/d714e491f22fda1c42dd78f9e92b5eb4 to your computer and use it in GitHub Desktop.
int pushButton = 6; // connected to pin 6 on the hub
// the setup routine runs once when you press reset:
void setup() {
// initialize serial communication at 9600 bits per second:
Serial.begin(9600);
// make the pushbutton's pin an input:
pinMode(pushButton, INPUT);
}
// the loop routine runs over and over again forever:
void loop() {
// read the input pin:
int buttonState = digitalRead(pushButton);
// print out the state of the button:
Serial.println(buttonState);
delay(1); // delay in between reads for stability
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment