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()
while active.value:
validDevices = []
device = monitor.poll(1)
action, device = monitor.poll(1)
while device:
try:
if not '/sys/devices/virtual/input/' in device.sys_path:
if device.device_node:
if device.sys_name.startswith('event'):
validDevices.append(str(device.device_node))
device = monitor.poll(0.1)
if action == 'add':
validDevices.append(str(device.device_node))
action, device = monitor.poll(0.1)
except:
pass
if validDevices: