stellar-aria / usbd-webusb

WebUSB implementation for usb-device.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

usbd-webusb

WebUSB implementation for usb-device.

WebUSB is a proposed JavaScript API standard for securely providing access to USB devices from web pages.

License

Licensed under either of

at your option.

Example

A full example requires the use of a hardware driver, but the hardware independent part looks like that:

use usbd_webusb::*;

// Creates a WebUSB class instance with URL "https://google.com"
// You can also provide a custom URL with scheme url_scheme::CUSTOM
let wusb = WebUsb::new(&usb_bus, url_scheme::HTTPS, "google.com");
let mut usb_dev = UsbDeviceBuilder::new(&usb_bus, UsbVidPid(0x16c0, 0x27dd))
    .product("Test product")
    .build();

loop {
    if !usb_dev.poll(&mut [&mut wusb]) {
        continue;
    }
}

About

WebUSB implementation for usb-device.

License:Apache License 2.0


Languages

Language:Rust 100.0%