Go to file
2015-07-21 05:19:07 -04:00
examples Fix up sync, open, add getters, raw event reading. 2015-07-07 18:31:28 -04:00
src Shuffle around device state into its own type 2015-07-21 05:19:07 -04:00
.gitignore Initial commit 2015-05-29 14:57:46 -04:00
.travis.yml Initial commit 2015-05-29 14:57:46 -04:00
Cargo.toml Fix up sync, open, add getters, raw event reading. 2015-07-07 18:31:28 -04:00
README.md Underp the readme title 2015-07-18 15:26:23 -04:00

evdev

Travis Crates.io

Documentation

Nice access to evdev.

What is evdev?

evdev is the Linux kernel's generic input interface.

What does this library support?

Device enumeration (by scanning), capability querying, event polling, multitouch, and force feedback. Everything that evdev supports.

Example

extern crate evdev;

fn main() {
    // fixme
}