mirror of
https://github.com/moparisthebest/uinput-mapper
synced 2024-11-14 04:35:02 -05:00
22 lines
417 B
Python
22 lines
417 B
Python
from cinput import *
|
|
|
|
|
|
"""
|
|
Configuration for a simple Microsoft SideWinter Game Pad Pro USB version 1.0
|
|
... as ABS input pointer device
|
|
"""
|
|
|
|
config = {
|
|
(0, EV_KEY): {
|
|
BTN_A: {
|
|
'type' : (0, EV_KEY),
|
|
'code' : BTN_MOUSE,
|
|
'value' : lambda x: 0 if x == 0 else 1
|
|
}
|
|
}
|
|
}
|
|
|
|
def config_merge(c):
|
|
del c[(0, EV_KEY)]
|
|
c.update(config)
|