#usb-device #devices #cross-platform #connected #id #product #vendor

usb_enumeration

A cross platform library that returns details of currently connected USB devices

4 releases (2 breaking)

0.2.0 Nov 30, 2022
0.1.2 May 10, 2021
0.1.1 Apr 1, 2021
0.1.0 Nov 12, 2020
0.0.3 Aug 21, 2020

#943 in Hardware support

Download history 22/week @ 2023-12-04 108/week @ 2023-12-11 93/week @ 2023-12-18 18/week @ 2023-12-25 21/week @ 2024-01-15 27/week @ 2024-01-22 71/week @ 2024-01-29 306/week @ 2024-02-05 34/week @ 2024-02-12 49/week @ 2024-02-26 21/week @ 2024-03-04 24/week @ 2024-03-11 4/week @ 2024-03-18

98 downloads per month
Used in 4 crates (3 directly)

MIT license

24KB
450 lines

usb_enumeration

A cross platform Rust library that returns the vendor and product IDs of currently connected USB devices

Actions Status

Example

let devices = usb_enumeration::enumerate(None, None);

println!("{:#?}", devices);

// Outputs:
// [
//   UsbDevice {
//       id: "USB\\VID_0CE9&PID_1220\\0000000004BE",
//       vendor_id: 3305,
//       product_id: 4640,
//       description: Some(
//           "PicoScope 4000 series PC Oscilloscope",
//       ),
//   },
//   UsbDevice {
//       id: "USB\\VID_046D&PID_C52B\\5&17411534&0&11",
//       vendor_id: 1133,
//       product_id: 50475,
//       description: Some(
//           "USB Composite Device",
//       ),
//   },
//   UsbDevice {
//       id: "USB\\VID_046D&PID_C52B&MI_00\\6&12D311A2&0&0000",
//       vendor_id: 1133,
//       product_id: 50475,
//       description: Some(
//           "Logitech USB Input Device",
//       ),
//   },
//     etc...
// ]

You can also subscribe to events using the Observer:

use usb_enumeration::{Observer, Event};

let sub = Observer::new()
    .with_poll_interval(2)
    .with_vendor_id(0x1234)
    .with_product_id(0x5678)
    .subscribe();

// when sub is dropped, the background thread will close

for event in sub.rx_event.iter() {
    match event {
        Event::Initial(d) => println!("Initial devices: {:?}", d),
        Event::Connect(d) => println!("Connected device: {:?}", d),
        Event::Disconnect(d) => println!("Disconnected device: {:?}", d),
    }
}

License: MIT

Dependencies

~105–460KB