mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-07-30 02:18:11 -07:00
Added Count Down Timer
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
#ifndef __APP_H__
|
||||
#define __APP_H__
|
||||
|
||||
#include <furi.h>
|
||||
#include <gui/gui.h>
|
||||
#include <gui/view_dispatcher.h>
|
||||
|
||||
// app
|
||||
typedef struct {
|
||||
Gui* gui; // gui object
|
||||
ViewDispatcher* view_dispatcher; // view dispacther of the gui
|
||||
|
||||
// views
|
||||
CountDownTimView* helloworld_view;
|
||||
|
||||
} CountDownTimerApp;
|
||||
|
||||
CountDownTimerApp* countdown_app_new(void);
|
||||
void countdown_app_delete(CountDownTimerApp* app);
|
||||
void countdown_app_run(CountDownTimerApp* app);
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user