stickup 0.2.9

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
//! Input backends for StickUp.
//!
//! These modules provide implementations of the [`Device`] trait
//! for real hardware (HID) and virtual input devices.

pub mod hid;

pub mod virtual_input;

pub use hid::probe_devices;

pub use virtual_input::create_virtual_devices;