No description
Find a file
2015-05-31 07:41:42 -04:00
examples [feat] Initial enumeration and querying 2015-05-31 07:41:42 -04:00
src [feat] Initial enumeration and querying 2015-05-31 07:41:42 -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 [feat] Initial enumeration and querying 2015-05-31 07:41:42 -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
}