#ifndef _OSWALD_MAIN_H #define _OSWALD_MAIN_H #include "oswald.h" extern clock_state OswaldClk; extern watch_state OswaldState; extern watch_screen OswaldScreens[]; /* gets triggered by OS timer function */ void oswald_one_second_tick(); void oswald_set_time(u8t hour, u8t minute, u8t second); void oswald_handle_button_press(watch_button button); void oswald_init(void); #endif