Add tool for collecting power/temp information

This commit is contained in:
Jeremy Soller
2020-04-04 08:23:52 -06:00
parent 62a909ee81
commit 82b7079f73
2 changed files with 66 additions and 1 deletions

View File

@ -282,7 +282,7 @@ unsafe fn fan_get(index: u8) -> Result<(), Error> {
)?;
let duty = ec.fan_get(index)?;
eprintln!("{}", duty);
println!("{}", duty);
Ok(())
}