Cookie Clicker over bluetooth!

This commit is contained in:
Derek Jamison
2023-03-30 16:03:11 -04:00
parent 10fee7301b
commit e9b37d5b50
8 changed files with 1283 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
#pragma once
#include <gui/view.h>
typedef struct Hid Hid;
typedef struct HidCC HidCC;
HidCC* hid_cc_alloc(Hid* bt_hid);
void hid_cc_free(HidCC* hid_cc);
View* hid_cc_get_view(HidCC* hid_cc);
void hid_cc_set_connected_status(HidCC* hid_cc, bool connected);