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
17 lines
357 B
C
17 lines
357 B
C
#pragma once
|
|
|
|
#include <gui/view.h>
|
|
|
|
#define MOUSE_MOVE_SHORT 5
|
|
#define MOUSE_MOVE_LONG 20
|
|
|
|
typedef struct Hid Hid;
|
|
typedef struct HidMouse HidMouse;
|
|
|
|
HidMouse* hid_mouse_alloc(Hid* bt_hid);
|
|
|
|
void hid_mouse_free(HidMouse* hid_mouse);
|
|
|
|
View* hid_mouse_get_view(HidMouse* hid_mouse);
|
|
|
|
void hid_mouse_set_connected_status(HidMouse* hid_mouse, bool connected);
|