hid 0.4.1

Safe hidapi wrapper
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
extern crate hidapi_sys as sys;
extern crate libc;

mod error;
pub use error::{Error, Result};

mod manager;
pub use manager::{Manager, init};

mod devices;
pub use devices::Devices;

mod device;
pub use device::Device;

pub mod handle;
pub use handle::Handle;