Go to file
Corey Richardson bbbd03d0de Use a wrapper around ffs instead of ffs directly
Also exposes it to users.
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 Use a wrapper around ffs instead of ffs directly 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
}