Go to file
Merlijn Wajer 5b62ccd15a Update ebuild. 2013-07-04 23:24:02 +02:00
c Switch to Python as main implementation. 2013-05-14 23:53:37 +02:00
configs Update configurations. 2013-05-24 14:17:12 +02:00
gentoo/sys-apps/uinput-mapper Update ebuild. 2013-07-04 23:24:02 +02:00
uinputmapper Add grab support. 2013-06-25 17:10:50 +02:00
COPYING Add GPL-3. 2013-05-23 23:57:24 +02:00
Makefile Attempt to put support libraries in a folder. 2013-05-23 23:26:55 +02:00
README.rst Update README.rst 2013-05-19 13:46:11 +02:00
input-create Update ebuild. 2013-07-04 23:24:02 +02:00
input-read Modify input-* scripts for new layout. 2013-05-23 23:35:12 +02:00
input-replay Initial version of input-replay. 2013-07-04 22:58:20 +02:00

README.rst

uinput-mapper
=============

uinput-mapper maps input devices to new virtual input devices, using (as implied
by the name /dev/uinput[1]).

[1] Or /dev/input/uinput depending on the OS.


Usage and Configuration
=======================

Configuration is done in Python; examples and other information can be found on
the project website: http://hetgrotebos.org/wiki/uinput-mapper

Bugs
====

None that I am aware of, but if you find some please drop me a mail at
http://wizzup.org. (You can find my email address there)


linux_input.py
==============

Python binding for linux/input.h ; somewhat incomplete.
Included in uinput-mapper ; may be split later

linux_uinput.py
==============


Python binding for linux/uinput.h ; not complete yet.
Included in uinput-mapper ; may be split later


Development notes
=================

Generating gen.py:

    gcc -E -dM /usr/include/linux/input.h | egrep ' (EV|SYN|KEY|BTN|REL|ABS|MSC|LED|SND|REP|SW)_[A-Za-z0-9_]+' | ( echo "#include <linux/input.h>" ; echo "input_constants_dict = {" ; sed -r 's/[^ ]+ +([^ ]+).*/"\1" : \1,/' ; echo "}" ) | gcc -E -o /dev/stdout - | grep 'input_constants_dict = {' -A 100000 > gen.py