scdsu-core 0.1.5

core library crate for steam-controler-dsu
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Contains adapters from raw HID data to DSU frames for supported devices.
//!
//! All devices implement the [`Device`](crate::devices::Device) trait, and their frame
//! data implement `From<SomeDeviceSpecifcFrameData> for DSUFrame`.

pub mod triton;
pub(crate) mod util;

mod device;

pub use device::Device;