initial working input command chain

This commit is contained in:
chrys 2016-09-17 23:38:46 +02:00
parent 75db6ac58f
commit 593aafd17b

View File

@ -0,0 +1,26 @@
#!/bin/python
import time
input = {
'currInput': [],
'prevInput': [],
'prevDeepestInput': [],
'currEvent': None,
'eventBuffer': None,
'shortcutRepeat': 0,
'fenrirKey': ['82'],
'keyForeward': False,
'lastInputTime':time.time(),
'oldNumLock': True,
'newNumLock':True,
'oldCapsLock':False,
'newCapsLock':False
}
inputEvent = {
'EventName': '',
'EventValue': '',
'EventSec': 0,
'EventUsec': 0,
'EventState': 0,
}