mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-12-19 09:13:11 +00:00
2b6eee1848
add arrow showing upper side, its not clearly how you need to hold it, arrow helps a bit
16 lines
448 B
C
16 lines
448 B
C
#pragma once
|
|
|
|
#include <gui/view.h>
|
|
|
|
typedef struct Hid Hid;
|
|
typedef struct HidKeynoteVertical HidKeynoteVertical;
|
|
|
|
HidKeynoteVertical* hid_keynote_vertical_alloc(Hid* bt_hid);
|
|
|
|
void hid_keynote_vertical_free(HidKeynoteVertical* hid_keynote_vertical);
|
|
|
|
View* hid_keynote_vertical_get_view(HidKeynoteVertical* hid_keynote_vertical);
|
|
|
|
void hid_keynote_vertical_set_connected_status(
|
|
HidKeynoteVertical* hid_keynote_vertical,
|
|
bool connected);
|