mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-12-11 21:52:28 +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
17 lines
455 B
C
17 lines
455 B
C
#pragma once
|
|
|
|
#include <gui/view.h>
|
|
|
|
#define MOUSE_MOVE_SHORT 5
|
|
#define MOUSE_MOVE_LONG 20
|
|
|
|
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);
|