Added Count Down Timer

This commit is contained in:
RogueMaster
2022-12-15 16:52:05 -05:00
parent ac73a6adc0
commit 0275fc5bff
10 changed files with 555 additions and 1 deletions
+22
View File
@@ -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