9 lines
193 B
C
9 lines
193 B
C
#ifndef BUTTONS_H
|
|
#define BUTTONS_H
|
|
void buttons_setup(void);
|
|
void buttons_open(uint32_t ticks);
|
|
void buttons_close(uint32_t ticks);
|
|
void buttons_release(void);
|
|
void buttons_tick(void);
|
|
#endif
|