Button handling implemented.

This commit is contained in:
2022-08-21 14:00:52 +02:00
parent 9c31f70c57
commit 4840c150c2
4 changed files with 46 additions and 8 deletions

View File

@ -14,6 +14,9 @@ class Controller {
Playlist current_playlist;
bool is_rfid_present = false;
unsigned long last_rfid_check = 0;
uint8_t button_pressed = 0;
unsigned long button_pressed_since = 0;
bool button_already_processed = false;
public:
void handle();

View File

@ -9,8 +9,8 @@
#define PIN_BTN_VOL_UP 32
#define PIN_BTN_VOL_DOWN 33
#define PIN_BTN_TRACK_NEXT 34
#define PIN_BTN_TRACK_PREV 35
#define PIN_BTN_TRACK_NEXT 17
#define PIN_BTN_TRACK_PREV 16
#define I2S_DOUT 25
#define I2S_BCLK 26