goodwatch/firmware/apps/clock.h
2017-11-14 14:07:10 -05:00

17 lines
276 B
C

/*! \file clock.h
\brief Clock application, the main one.
*/
//! Initialize the clock.
void clock_init();
//! Exit to the next application.
int clock_exit();
//! Draw the clock.
void clock_draw();
//! Draw the time.
void draw_time();
//! Draw the date.
void draw_date();