mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-12-23 11:13:09 +00:00
1c0276a0be
* FuriHal: lower MGG display contrast by 4 points * FuriHal: unify external gpio resources initialization * Infrared: parse raw in universal TV file, cleanup it with new ifrared script. Other minor changes. * Gui: fix elements_multiline_text_aligned eating symbols * Lib: human readable errors in flipper application package * Special request from marketing team
16 lines
403 B
C
16 lines
403 B
C
#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);
|