move hid and snake apps into main repo [ci skip]

This commit is contained in:
MX
2024-01-05 22:36:36 +03:00
parent 00d9c60515
commit 4b95efda49
100 changed files with 4841 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
#pragma once
#include <gui/view.h>
typedef struct Hid Hid;
typedef struct HidKeynote HidKeynote;
HidKeynote* hid_keynote_alloc(Hid* bt_hid);
void hid_keynote_free(HidKeynote* hid_keynote);
View* hid_keynote_get_view(HidKeynote* hid_keynote);
void hid_keynote_set_connected_status(HidKeynote* hid_keynote, bool connected);
void hid_keynote_set_orientation(HidKeynote* hid_keynote, bool vertical);