Maintenance crates.io docs.rs CI

corsairmi

Read data from Corsair RMi and HXi series power supplies.

This uses the Linux HIDRAW interface to communicate with the power supply.

This crate is based off of this implementation in C: [notaz/corsairmi]

Example

```rust use corsairmi::PowerSupply;

let mut psu: PowerSupply = PowerSupply::open("/dev/hidraw5")?; println!("Power consumption: {:.1} Watts", psu.input_power()?); ```