mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-12-18 16:53:45 +00:00
71e85ac367
* Add HID mouse auto-clicker. * Add click rate adjustment to HID auto-clicker. * Fix formatting. * HidRemote: modify jiggler/clicker event filter and allow repeat to change click rate --------- Co-authored-by: あく <alleteam@gmail.com>
14 lines
400 B
C
14 lines
400 B
C
#pragma once
|
|
|
|
#include <gui/view.h>
|
|
|
|
typedef struct Hid Hid;
|
|
typedef struct HidMouseClicker HidMouseClicker;
|
|
|
|
HidMouseClicker* hid_mouse_clicker_alloc(Hid* bt_hid);
|
|
|
|
void hid_mouse_clicker_free(HidMouseClicker* hid_mouse_clicker);
|
|
|
|
View* hid_mouse_clicker_get_view(HidMouseClicker* hid_mouse_clicker);
|
|
|
|
void hid_mouse_clicker_set_connected_status(HidMouseClicker* hid_mouse_clicker, bool connected);
|