ina3221/examples/voltage.rs
Thomas Klaehn bf5ee0ec78 Initial commit
Signed-off-by: Thomas Klaehn <thomas.klaehn@perinet.io>
2025-01-14 14:42:18 +01:00

11 lines
285 B
Rust

use ina3221;
fn main() {
let mut ina = ina3221::Ina3221::new(0x40);
let res = match ina.bus_voltage(ina3221::Channel::One) {
Ok(value) => value,
Err(error) => panic!("Can't read i2c: {error:?}"),
};
println!("Channel one bus voltage: {:?} V.", res);
}