ajazz-sdk 0.2.1

HidApi driver for Ajazz devices
Documentation
use std::collections::HashSet;
use hidapi::{HidApi, HidResult};
use crate::info::{is_mirabox_vendor, Kind};

/// Creates an instance of the HidApi
///
/// Can be used if you don't want to link hidapi crate into your project
pub fn new_hidapi() -> HidResult<HidApi> {
    HidApi::new()
}

/// Actually refreshes the device list
pub fn refresh_device_list(hidapi: &mut HidApi) -> HidResult<()> {
    hidapi.refresh_devices()
}

/// Returns a list of devices as (Kind, Serial Number) that could be found using HidApi.
///
/// **WARNING:** To refresh the list, use [refresh_device_list]
pub fn list_devices(hidapi: &HidApi) -> Vec<(Kind, String)> {
    hidapi
        .device_list()
        .filter_map(|d| {
            if !is_mirabox_vendor(d.vendor_id()) {
                return None;
            }

            let serial = d.serial_number()?;
            Some((
                Kind::from_vid_pid(d.vendor_id(), d.product_id())?,
                serial.to_string(),
            ))
        })
        .collect::<HashSet<_>>()
        .into_iter()
        .collect()
}