Go to file
meh f9ff9117ac device: make write public but hidden 2016-04-30 22:54:02 +02:00
examples examples/hello: improve hello world example 2016-04-25 17:13:05 +02:00
src device: make write public but hidden 2016-04-30 22:54:02 +02:00
.gitignore Initial commit 2016-04-25 04:32:24 +02:00
Cargo.toml crate: bump version 2016-04-25 17:58:01 +02:00
README.md *: add docs 2016-04-25 17:57:45 +02:00

README.md

uinput

/dev/uinput high level wrapper.

Example

The following example writes hello world.

extern crate uinput;
use uinput::event::keyboard;

use std::thread;
use std::time::Duration;

fn main() {
	let mut device = uinput::default().unwrap()
		.name("test").unwrap()
		.event(uinput::event::Keyboard::All).unwrap()
		.create().unwrap();

	thread::sleep(Duration::from_secs(1));

	device.click(&keyboard::Key::H).unwrap();
	device.click(&keyboard::Key::E).unwrap();
	device.click(&keyboard::Key::L).unwrap();
	device.click(&keyboard::Key::L).unwrap();
	device.click(&keyboard::Key::O).unwrap();
	device.click(&keyboard::Key::Space).unwrap();
	device.click(&keyboard::Key::W).unwrap();
	device.click(&keyboard::Key::O).unwrap();
	device.click(&keyboard::Key::R).unwrap();
	device.click(&keyboard::Key::L).unwrap();
	device.click(&keyboard::Key::D).unwrap();
	device.click(&keyboard::Key::Enter).unwrap();

	device.synchronize().unwrap();
}