One-KVM/kvmd/plugins/hid/ch9329/keyboard.py
jacobbar 4220fe5908 fixes ch9329 plugin multiple keyboard keys (#123)
* Add ch9329 plugin

---------

Co-authored-by: Maxim Devaev <mdevaev@gmail.com>
2023-07-10 03:02:28 +03:00

81 lines
3.3 KiB
Python

# ========================================================================== #
# #
# KVMD - The main PiKVM daemon. #
# #
# Copyright (C) 2018-2022 Maxim Devaev <mdevaev@gmail.com> #
# #
# This program is free software: you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
# the Free Software Foundation, either version 3 of the License, or #
# (at your option) any later version. #
# #
# This program is distributed in the hope that it will be useful, #
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
# GNU General Public License for more details. #
# #
# You should have received a copy of the GNU General Public License #
# along with this program. If not, see <https://www.gnu.org/licenses/>. #
# #
# ========================================================================== #
from .... import aiomulti
from ....keyboard.mappings import KEYMAP
class Keyboard:
def __init__(self) -> None:
self.__notifier = aiomulti.AioProcessNotifier()
self.__leds = aiomulti.AioSharedFlags({
"num": False,
"caps": False,
"scroll": False,
}, self.__notifier, type=bool)
self.__modifiers = 0x00
self.__active_keys: list[int] = []
def key(self, key: str, state: bool) -> list[int]:
modifier = self.__is_modifier(key)
code = self.__keycode(key)
if not state:
if not modifier and code in self.__active_keys:
self.__active_keys.remove(code)
if modifier and self.__modifiers:
self.__modifiers &= ~code
if state:
if not modifier and len(self.__active_keys) < 6:
self.__active_keys.append(code)
if modifier:
self.__modifiers |= code
return self.__key()
async def leds(self) -> dict:
leds = await self.__leds.get()
return leds
def set_leds(self, led_byte: int) -> None:
num = bool(led_byte & 1)
caps = bool((led_byte >> 1) & 1)
scroll = bool((led_byte >> 2) & 1)
self.__leds.update(num=num, caps=caps, scroll=scroll)
def __key(self) -> list[int]:
cmd = [
0x00, 0x02, 0x08,
self.__modifiers,
0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00]
counter = 0
for code in self.__active_keys:
cmd[5 + counter] = code
counter += 1
return cmd
def __keycode(self, key: str) -> int:
return KEYMAP[key].usb.code
def __is_modifier(self, key: str) -> bool:
return KEYMAP[key].usb.is_modifier