Reduce sensitivity

This commit is contained in:
Gabriel Augendre 2023-01-06 18:08:41 +01:00
parent c054d92c69
commit a953f7d2d9
2 changed files with 10 additions and 4 deletions

View file

@ -20,6 +20,8 @@
#define LED 2
#define BUTTON 33
#define DEBOUNCE_DELAY 1000
// Screen
#define SSD1306_NO_SPLASH
#define SCREEN_WIDTH 128

View file

@ -9,6 +9,7 @@
#include "config.h"
byte buttonLastState = HIGH;
long lastDebounceTime = 0;
void setup()
{
@ -43,9 +44,12 @@ void setup()
void loop()
{
if ((millis() - lastDebounceTime) > DEBOUNCE_DELAY)
{
byte buttonCurrentState = digitalRead(BUTTON);
if (buttonCurrentState == LOW && buttonLastState == HIGH)
play();
buttonLastState = buttonCurrentState;
}
audio.loop();
}