stickup 0.1.2

A modular input device abstraction layer with HID and virtual device support.
Documentation
1
2
3
4
5
6
#[derive(Debug, Clone)]
pub enum InputEvent {
    AxisMoved { axis: u8, value: f32 },
    ButtonPressed { button: u8 },
    ButtonReleased { button: u8 },
}