mirror of
https://github.com/travisgoodspeed/goodwatch
synced 2024-11-22 16:59:57 +00:00
12 lines
210 B
C
12 lines
210 B
C
/*! \file keypad.h
|
|
\brief Keypad driver.
|
|
*/
|
|
|
|
//! Scan the keypad.
|
|
unsigned int key_scan();
|
|
//! Initialize the keypad GPIO pins.
|
|
void key_init();
|
|
//! Get the currently pressed button as a char.
|
|
char getchar();
|
|
|