From 844f76e2c2d63511d5320216d6a7a4c1d0aee4dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20Krac=C3=ADk?= Date: Sun, 7 Jun 2020 15:09:19 +0200 Subject: [PATCH] HID: Mouse raw send to HID device --- hidinput.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hidinput.py b/hidinput.py index ba55b7f..3506bb5 100644 --- a/hidinput.py +++ b/hidinput.py @@ -112,7 +112,7 @@ def handle_mouseEvent(data): print("RAW Btn: {}, X: {}, Y: {}, W: {}".format(btn, x, y, wheel)) -# hid_mouse_writeabs(btn, x, y, wheel) + hid_mouse_writeabs(btn, x, y, wheel) @socketio.on('mouseEvent')