mirror of
https://github.com/ClusterM/fdskey.git
synced 2025-12-16 19:15:54 +01:00
18 lines
428 B
C
18 lines
428 B
C
#ifndef INC_BUTTONS_H_
|
|
#define INC_BUTTONS_H_
|
|
|
|
uint8_t button_up_holding();
|
|
uint8_t button_down_holding();
|
|
uint8_t button_left_holding();
|
|
uint8_t button_right_holding();
|
|
uint8_t button_up_newpress();
|
|
uint8_t button_down_newpress();
|
|
uint8_t button_left_newpress();
|
|
uint8_t button_right_newpress();
|
|
uint32_t button_left_hold_time();
|
|
uint32_t button_right_hold_time();
|
|
|
|
#define BUTTONS_REPEAT_TIME 500
|
|
|
|
#endif /* INC_BUTTONS_H_ */
|