1 unstable release

0.1.0 May 16, 2024

#245 in Hardware support

Download history 156/week @ 2024-05-16

156 downloads per month

MIT license

120KB
2.5K SLoC

neoVI MIC2 Application Programming Interfaces

https://github.com/intrepidcs/mic2/

neoVI MIC2 Picture

crates.io docs.rs

Description

neoVI MIC 2 is a handheld pendant accessory with USB Trigger, GPS and microphone sold by Intrepid Control System, Inc.

Installation

cargo add mic2

Examples

See Examples on the github page for examples.

use mic2::find_neovi_mics;
use mic2::types::Result;

fn main() -> Result<()>{
    println!("Finding neovi MIC2 devices...");
    let devices = find_neovi_mics()?;

    println!("Found {} device(s)", devices.len());
    for device in devices {
        println!("{device:#?}");
    }

    Ok(())
}

License

The MIT License

Copyright (c) <Intrepid Control Systems, Inc.>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

Dependencies

~5.5–9.5MB
~168K SLoC