aboutsummarylogtreecommitdiffstats
path: root/fixcontroller.py
diff options
context:
space:
mode:
Diffstat (limited to 'fixcontroller.py')
-rwxr-xr-xfixcontroller.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/fixcontroller.py b/fixcontroller.py
index 24e48edaf301..54cf89d335c4 100755
--- a/fixcontroller.py
+++ b/fixcontroller.py
@@ -3,10 +3,13 @@
# https://gist.github.com/dnmodder/de2df973323b7c6acf45f40dc66e8db3
import usb.core
+import systemd.journal
dev = usb.core.find(idVendor=0x045e, idProduct=0x028e)
if dev is None:
- raise ValueError('Device not found')
+ systemd.journal.send('XBox generic controller not found', SYSLOG_IDENTIFIER='xbox-generic-controller')
+ raise ValueError('Device not found')
else:
- dev.ctrl_transfer(0xc1, 0x01, 0x0100, 0x00, 0x14)
+ dev.ctrl_transfer(0xc1, 0x01, 0x0100, 0x00, 0x14)
+ systemd.journal.send('XBox generic controller found and fixed', SYSLOG_IDENTIFIER='xbox-generic-controller')