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>
#define MOUSE_MOVE_SHORT 5
typedef struct Hid Hid;
typedef struct HidMouseJiggler HidMouseJiggler;
HidMouseJiggler* hid_mouse_jiggler_alloc(Hid* bt_hid);
void hid_mouse_jiggler_free(HidMouseJiggler* hid_mouse_jiggler);
View* hid_mouse_jiggler_get_view(HidMouseJiggler* hid_mouse_jiggler);
void hid_mouse_jiggler_set_connected_status(HidMouseJiggler* hid_mouse_jiggler, bool connected);