goodwatch/firmware/apps/tuner.h
Travis Goodspeed 6e42d34da4 Major cleanup to keyscanning code, prevents right column from being stuck.
Apps can now opt to redraw by returning non-zero from a keypress.
Flicker is now more reliable.
2018-02-08 17:21:58 -05:00

14 lines
275 B
C

/*! \file tuner.h
\brief Tuning application and RSSI tool.
*/
//! Enter the radio tool.
void tuner_init();
//! Exit the radio tool.
int tuner_exit();
//! Draw the screen and increase the count.
void tuner_draw();
//! Tuner keypress callback.
int tuner_keypress(char ch);