stickup 0.1.5

A modular input device abstraction layer with HID and virtual device support.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Input backends for StickUp.
//!
//! These modules provide implementations of the [`Device`] trait
//! for real hardware (HID) and virtual input devices.

#[cfg(feature = "hid")]
pub mod hid;

#[cfg(feature = "virtual")]
pub mod virtual_input;

#[cfg(feature = "hid")]
pub use hid::probe_devices;

#[cfg(feature = "virtual")]
pub use virtual_input::create_virtual_devices;