1
0
mirror of https://github.com/arduino/Arduino.git synced 2024-11-29 10:24:12 +01:00
This commit is contained in:
Tom Igoe 2009-06-17 21:21:36 +00:00
parent 79353b637d
commit ee810e8aa7

View File

@ -1,52 +1,73 @@
/* Debounce /*
* Debounce
* Each time the input pin goes from LOW to HIGH (e.g. because of a push-button
* press), the output pin is toggled from LOW to HIGH or HIGH to LOW. There's Each time the input pin goes from LOW to HIGH (e.g. because of a push-button
* a minimum delay between toggles to debounce the circuit (i.e. to ignore press), the output pin is toggled from LOW to HIGH or HIGH to LOW. There's
* noise). a minimum delay between toggles to debounce the circuit (i.e. to ignore
* noise).
* David A. Mellis
* 21 November 2006 The circuit:
* * LED attached from pin 13 to ground
* http://www.arduino.cc/en/Tutorial/Debounce * pushbutton attached from pin 7 to +5V
* 10K resistor attached from pin 7 to ground
* Note: On most Arduino boards, there is already an LED on the board
connected to pin 13, so you don't need any extra components for this example.
created 21 November 2006
by David A. Mellis
modified 17 Jun 2009
by Tom Igoe
http://www.arduino.cc/en/Tutorial/Debounce
*/ */
int inPin = 7; // the number of the input pin // constants won't change. They're used here to
int outPin = 13; // the number of the output pin // set pin numbers:
const int buttonPin = 7; // the number of the pushbutton pin
const int ledPin = 13; // the number of the LED pin
int state = HIGH; // the current state of the output pin // Variables will change:
int reading; // the current reading from the input pin int ledState = HIGH; // the current state of the output pin
int previous = LOW; // the previous reading from the input pin int buttonState; // the current reading from the input pin
int lastButtonState = LOW; // the previous reading from the input pin
// the follow variables are long's because the time, measured in miliseconds, // the follow variables are long's because the time, measured in miliseconds,
// will quickly become a bigger number than can be stored in an int. // will quickly become a bigger number than can be stored in an int.
long time = 0; // the last time the output pin was toggled long lastDebounceTime = 0; // the last time the output pin was toggled
long debounce = 200; // the debounce time, increase if the output flickers long debounceDelay = 200; // the debounce time, increase if the output flickers
void setup() void setup() {
{ pinMode(buttonPin, INPUT);
pinMode(inPin, INPUT); pinMode(ledPin, OUTPUT);
pinMode(outPin, OUTPUT);
} }
void loop() void loop() {
{ buttonState = digitalRead(buttonPin);
reading = digitalRead(inPin);
// if we just pressed the button (i.e. the input went from LOW to HIGH), // check to see if you just pressed the button
// and we've waited long enough since the last press to ignore any noise... // (i.e. the input went from LOW to HIGH), and you've waited
if (reading == HIGH && previous == LOW && millis() - time > debounce) { // long enough since the last press to ignore any noise:
// ... invert the output if ((buttonState == HIGH) &&
if (state == HIGH) (lastButtonState == LOW) &&
state = LOW; (millis() - lastDebounceTime) > debounceDelay) {
else // toggle the output
state = HIGH; if (ledState == HIGH) {
ledState = LOW;
// ... and remember when the last button press was } else {
time = millis(); ledState = HIGH;
}
// ... and store the time of the last button press
// in a variable:
lastDebounceTime = millis();
} }
digitalWrite(outPin, state); // set the LED using the ledState variable:
digitalWrite(ledPin, ledState);
previous = reading; // save the buttonState. Next time through the loop,
// it'll be the lastButtonState:
lastButtonState = buttonState;
} }