Skip to content

Instantly share code, notes, and snippets.

@0q98ahdsg3987y1h987y
Last active December 2, 2015 13:23
Show Gist options
  • Save 0q98ahdsg3987y1h987y/ecdcc16f1314c702707f to your computer and use it in GitHub Desktop.
Save 0q98ahdsg3987y1h987y/ecdcc16f1314c702707f to your computer and use it in GitHub Desktop.
Button input sender ft. Debounce
/*
===================
BUTTON INPUT SENDER
By Accommodavid
~ wow ~
v1.0 MIT License
===================
*/
#define BUTTON_PIN 12
int buttonState;
int lastButtonState = HIGH;
void setup() {
Serial.begin(9600);
pinMode(BUTTON_PIN, INPUT_PULLUP);
}
void loop() {
int reading = digitalRead(BUTTON_PIN);
if (reading != lastButtonState) {
buttonState = reading;
buttonState == HIGH ? Serial.write(0) : Serial.write(1);
delay(100);
lastButtonState = reading;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment