diff options
Diffstat (limited to 'launcher/widgets/fake_widget_2.c')
-rw-r--r-- | launcher/widgets/fake_widget_2.c | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/launcher/widgets/fake_widget_2.c b/launcher/widgets/fake_widget_2.c deleted file mode 100644 index 46772222..00000000 --- a/launcher/widgets/fake_widget_2.c +++ /dev/null @@ -1,37 +0,0 @@ -#include "fake_widget_2.h" -#include "watch.h" - -void fake_widget_2_setup(LauncherSettings *settings, void ** context_ptr) { - (void) settings; - *context_ptr = NULL; -} - -void fake_widget_2_activate(LauncherSettings *settings, void *context) { - (void) settings; - (void) context; -} - -bool fake_widget_2_loop(LauncherEvent event, LauncherSettings *settings, void *context) { - printf("fake_widget_2_loop\n"); - (void) settings; - (void) context; - watch_display_string("W1 d get02", 0); - - switch (event.bit.event_type) { - case EVENT_MODE_BUTTON_UP: - launcher_move_to_next_widget(); - return false; - case EVENT_LIGHT_BUTTON_UP: - launcher_illuminate_led(); - break; - default: - break; - } - - return true; -} - -void fake_widget_2_resign(LauncherSettings *settings, void *context) { - (void) settings; - (void) context; -} |