From 727e964a77ba319ff881e431a770280096325a37 Mon Sep 17 00:00:00 2001 From: "Peter F. Patel-Schneider" Date: Wed, 7 Dec 2022 15:11:51 -0500 Subject: [PATCH] tools: remove non-working monitor.py --- tools/monitor.py | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 tools/monitor.py diff --git a/tools/monitor.py b/tools/monitor.py deleted file mode 100644 index 9ec8c623..00000000 --- a/tools/monitor.py +++ /dev/null @@ -1,18 +0,0 @@ -# -# -# - -import sys - -import hidapi - -from logitech.unifying_receiver.base import DEVICE_NANO_RECEIVER, DEVICE_UNIFYING_RECEIVER, DEVICE_UNIFYING_RECEIVER_2 - -sys.path += (sys.path[0] + '/../lib', ) - - -def print_event(action, device): - print('~~~~ device [%s] %s' % (action, device)) - - -hidapi.monitor(print_event, DEVICE_UNIFYING_RECEIVER, DEVICE_UNIFYING_RECEIVER_2, DEVICE_NANO_RECEIVER)