1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
-
-
- #ifndef __BUTTONS_H__
- #define __BUTTONS_H__
-
- #include <stdbool.h>
-
- #define DEBOUNCE_DELAY_MS 50
-
- enum buttons {
- BTN_A = 0,
- BTN_B,
- BTN_C,
-
-
- BTN_D,
- BTN_E,
- BTN_F,
- BTN_G,
- BTN_H,
-
- BTN_REC,
- BTN_CLICK,
- NUM_BTNS
- };
-
- void buttons_init(void);
- void buttons_callback(void (*fp)(enum buttons, bool));
- void buttons_run(void);
-
- #endif
|