mirror of
https://github.com/Crocmagnon/buzzer.git
synced 2024-11-21 23:48:07 +01:00
Reduce sensitivity
This commit is contained in:
parent
c054d92c69
commit
a953f7d2d9
2 changed files with 10 additions and 4 deletions
|
@ -20,6 +20,8 @@
|
|||
#define LED 2
|
||||
#define BUTTON 33
|
||||
|
||||
#define DEBOUNCE_DELAY 1000
|
||||
|
||||
// Screen
|
||||
#define SSD1306_NO_SPLASH
|
||||
#define SCREEN_WIDTH 128
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
#include "config.h"
|
||||
|
||||
byte buttonLastState = HIGH;
|
||||
long lastDebounceTime = 0;
|
||||
|
||||
void setup()
|
||||
{
|
||||
|
@ -42,10 +43,13 @@ void setup()
|
|||
}
|
||||
|
||||
void loop()
|
||||
{
|
||||
if ((millis() - lastDebounceTime) > DEBOUNCE_DELAY)
|
||||
{
|
||||
byte buttonCurrentState = digitalRead(BUTTON);
|
||||
if (buttonCurrentState == LOW && buttonLastState == HIGH)
|
||||
play();
|
||||
buttonLastState = buttonCurrentState;
|
||||
}
|
||||
audio.loop();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue