evdev-rs/README.md
2015-07-18 15:26:23 -04:00

32 lines
678 B
Markdown

`evdev`
=======
[![Travis](https://img.shields.io/travis/cmr/evdev.svg?style=flat-square)](https://travis-ci.org/cmr/ioctl)
[![Crates.io](https://img.shields.io/crates/v/evdev.svg?style=flat-square)](https://crates.io/crates/ioctl)
[Documentation](https://cmr.github.io/evdev)
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
=======
```rust
extern crate evdev;
fn main() {
// fixme
}
```