mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-23 13:03:13 +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
14 lines
315 B
C
14 lines
315 B
C
#pragma once
|
|
|
|
#include <gui/view.h>
|
|
|
|
typedef struct Hid Hid;
|
|
typedef struct HidTikTok HidTikTok;
|
|
|
|
HidTikTok* hid_tiktok_alloc(Hid* bt_hid);
|
|
|
|
void hid_tiktok_free(HidTikTok* hid_tiktok);
|
|
|
|
View* hid_tiktok_get_view(HidTikTok* hid_tiktok);
|
|
|
|
void hid_tiktok_set_connected_status(HidTikTok* hid_tiktok, bool connected);
|