Go to file
2015-07-07 18:31:28 -04:00
examples Fix up sync, open, add getters, raw event reading. 2015-07-07 18:31:28 -04:00
src Fix up sync, open, add getters, raw event reading. 2015-07-07 18:31:28 -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 Initial commit 2015-05-29 14:57:46 -04:00

ioctl

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
}