diff options
Diffstat (limited to 'kvmd/plugins/hid/__init__.py')
-rw-r--r-- | kvmd/plugins/hid/__init__.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/kvmd/plugins/hid/__init__.py b/kvmd/plugins/hid/__init__.py index e81ea168..ec187578 100644 --- a/kvmd/plugins/hid/__init__.py +++ b/kvmd/plugins/hid/__init__.py @@ -59,6 +59,9 @@ class BaseHid(BasePlugin): def send_mouse_move_event(self, to_x: int, to_y: int) -> None: raise NotImplementedError + def send_mouse_relative_event(self, delta_x: int, delta_y: int) -> None: + pass # FIXME: SPI + def send_mouse_wheel_event(self, delta_x: int, delta_y: int) -> None: raise NotImplementedError |