This package provides bindings to the generic input event interface in
Linux. The evdev interface serves the purpose of passing events
generated in the kernel directly to userspace through character
devices that are typically located in /dev/input/.
This package also comes with bindings to uinput, the userspace input subsystem. Uinput allows userspace programs to create and handle input devices that can inject events directly into the input subsystem.
Please refer to the :doc:`tutorial <tutorial>` and the :doc:`apidoc <apidoc>` for usage information.
.. toctree:: :maxdepth: 1 tutorial install apidoc changelog
- python-uinput
- ruby-evdev
- evdev (ctypes)
Package :mod:`evdev` is released under the terms of the Revised BSD License.
- Use libudev to find the uinput device node as well as the other input
devices. Their locations are currently assumed to be
/dev/uinputand/dev/input/*. - More tests.
- Better uinput support (setting device capabilities as in python-uinput)
- Expose more input subsystem functionality (
EVIOCSKEYCODE,EVIOCGREPetc) - Figure out if using
linux/input.hand other kernel headers in your userspace program binds it to the GPL2.