mirror of
https://github.com/travisgoodspeed/goodwatch
synced 2024-11-22 08:09:13 +00:00
15 lines
261 B
C
15 lines
261 B
C
/*! \file morse.h
|
|
\brief Handy morse code tool for 70cm.
|
|
|
|
*/
|
|
|
|
//! Enter the Morse app.
|
|
void morse_init();
|
|
//! Exit the Morse app.
|
|
int morse_exit();
|
|
//! Draw the screen.
|
|
void morse_draw();
|
|
|
|
//! A button has been pressed for Morse.
|
|
int morse_keypress(char ch);
|