You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Use asyncio.all_tasks() again to check if relay is active
* Add missing type hints
* Add Arguments class with typed properties
* Reformat help texts
* Unify punctuation
* Print help arg last
* Re-add print_help()
* Rearrange help args
* Update docs to v0.7.1
* Bump version
Bluetooth to USB HID relay. Handles Bluetooth keyboard and mouse events from multiple input devices and translates them to
189
-
USB using Linux's gadget mode.
187
+
Bluetooth to USB HID relay. Handles Bluetooth keyboard and mouse events from multiple input devices and translates them to USB using Linux's gadget mode.
190
188
191
189
options:
192
-
-h, --help show this help message and exit
193
190
--device_ids DEVICE_IDS, -i DEVICE_IDS
194
-
Comma-separated list of identifiers for input devices to be relayed. An identifier is either the
195
-
input device path, the MAC address or any case-insensitive substring of the device name. Default is
help="Comma-separated list of identifiers for input devices to be relayed.\nAn identifier is either the input device path, the MAC address or any case-insensitive substring of the device name.\nExample: --device_ids '/dev/input/event2,a1:b2:c3:d4:e5:f6,0A-1B-2C-3D-4E-5F,logi'\nDefault: None",
21
+
)
22
+
self.add_argument(
23
+
"--auto_discover",
24
+
"-a",
25
+
action="store_true",
26
+
default=False,
27
+
help="Enable auto-discovery mode. All readable input devices will be relayed automatically.\nDefault: disabled",
28
+
)
29
+
self.add_argument(
30
+
"--grab_devices",
31
+
"-g",
32
+
action="store_true",
33
+
default=False,
34
+
help="Grab the input devices, i.e., suppress any events on your relay device.\nDevices are not grabbed by default.",
35
+
)
36
+
self.add_argument(
37
+
"--list_devices",
38
+
"-l",
39
+
action="store_true",
40
+
default=False,
41
+
help="List all available input devices and exit.",
42
+
)
43
+
self.add_argument(
44
+
"--log_to_file",
45
+
"-f",
46
+
action="store_true",
47
+
default=False,
48
+
help="Add a handler that logs to file, additionally to stdout.",
description="Bluetooth to USB HID relay. Handles Bluetooth keyboard and mouse events from multiple input devices and translates them to USB using Linux's gadget mode.",
0 commit comments