evdev-rs/README.md

32 lines
678 B
Markdown
Raw Normal View History

2015-07-18 19:26:23 +00:00
`evdev`
2015-05-29 18:57:46 +00:00
=======
[![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
}
```