Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/flipperzero-firmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcoreglitch <mail@s3f.ru>2020-11-12 22:26:49 +0300
committerGitHub <noreply@github.com>2020-11-12 22:26:49 +0300
commita61eef0f99971bae182a243518f23cb27e08c6a6 (patch)
tree151d8fbf7d5db0051e35bd79b212a49111fd9f10 /applications/applications.h
parentbf2f6e89ca31b8b41cb429837b8b5cb72d8915ed (diff)
FL-186 Add vibro demo (#234)
* add vibro demo * add F2 support
Diffstat (limited to 'applications/applications.h')
-rw-r--r--applications/applications.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/applications/applications.h b/applications/applications.h
index 697f2f9a..673ed461 100644
--- a/applications/applications.h
+++ b/applications/applications.h
@@ -32,6 +32,7 @@ void lf_rfid_workaround(void* p);
void nfc_task(void* p);
void irukagotchi_task(void* p);
void power_task(void* p);
+void application_vibro(void* p);
const FlipperStartupApp FLIPPER_STARTUP[] = {
#ifdef APP_DISPLAY
@@ -138,4 +139,8 @@ const FlipperStartupApp FLIPPER_APPS[] = {
#ifdef BUILD_SPEAKER_DEMO
{.app = coreglitch_demo_0, .name = "coreglitch_demo_0", .libs = {0}},
#endif
+
+#ifdef BUILD_VIBRO_DEMO
+ {.app = application_vibro, .name = "application_vibro", .libs = {1, FURI_LIB{"input_task"}}},
+#endif
}; \ No newline at end of file