From f5aaaf62d1767f47133266efc683d7d053d3601e Mon Sep 17 00:00:00 2001 From: NeoTheFox Date: Tue, 2 Feb 2021 12:15:34 +0300 Subject: [PATCH] Support Q620M A quick hacky way to support Q620M --- huion_keys.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/huion_keys.py b/huion_keys.py index bfae389..1ed966d 100644 --- a/huion_keys.py +++ b/huion_keys.py @@ -18,6 +18,8 @@ def main(): return 1 while True: hidraw_path = get_tablet_hidraw('256c', '006e') + if hidraw_path is None: + hidraw_path = get_tablet_hidraw('256c', '006d') if hidraw_path is None: print("Could not find tablet hidraw device") time.sleep(2)