diff options
author | Devaev Maxim <[email protected]> | 2018-10-05 20:30:49 +0300 |
---|---|---|
committer | Devaev Maxim <[email protected]> | 2018-10-05 20:30:49 +0300 |
commit | 125a56e5546976ae2389c1dd04ccd11f169ff66b (patch) | |
tree | ed942697b07f22743f0d9f1c3e8f0a1cf95112b6 /kvmd/__init__.py | |
parent | a87963e300b489831c3809c4321c8747752fc6c6 (diff) |
hid pinout
Diffstat (limited to 'kvmd/__init__.py')
-rw-r--r-- | kvmd/__init__.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/kvmd/__init__.py b/kvmd/__init__.py index da430634..77c49ad0 100644 --- a/kvmd/__init__.py +++ b/kvmd/__init__.py @@ -23,8 +23,10 @@ def main() -> None: loop = asyncio.get_event_loop() hid = Hid( + reset=int(config["hid"]["pinout"]["reset"]), device_path=str(config["hid"]["device"]), speed=int(config["hid"]["speed"]), + reset_delay=float(config["hid"]["reset_delay"]), ) atx = Atx( |