mirror of
https://github.com/travisgoodspeed/goodwatch
synced 2024-11-22 08:09:13 +00:00
11 lines
223 B
C
11 lines
223 B
C
/*! \file sidebutton.h
|
|
\brief Sidebutton driver.
|
|
*/
|
|
|
|
//! Initialize the IO pins.
|
|
void sidebutton_init();
|
|
//! Is the mode button pressed?
|
|
int sidebutton_mode();
|
|
//! Is the Program/Set button pressed?
|
|
int sidebutton_set();
|