Update evdevDriver.py

This commit is contained in:
chrys87 2018-05-23 14:30:39 +02:00 committed by GitHub
parent 81a7896f14
commit 8538dc52a5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -66,14 +66,15 @@ class driver(inputDriver):
monitor.start() monitor.start()
while active.value: while active.value:
validDevices = [] validDevices = []
device = monitor.poll(1) action, device = monitor.poll(1)
while device: while device:
try: try:
if not '/sys/devices/virtual/input/' in device.sys_path: if not '/sys/devices/virtual/input/' in device.sys_path:
if device.device_node: if device.device_node:
if device.sys_name.startswith('event'): if device.sys_name.startswith('event'):
if action == 'add':
validDevices.append(str(device.device_node)) validDevices.append(str(device.device_node))
device = monitor.poll(0.1) action, device = monitor.poll(0.1)
except: except:
pass pass
if validDevices: if validDevices: