Crates.io | ina219_rs |
lib.rs | ina219_rs |
version | 0.5.1 |
source | src |
created_at | 2022-09-25 02:11:12.353885 |
updated_at | 2022-12-07 14:09:18.196418 |
description | INA219 current/power monitor driver |
homepage | |
repository | https://github.com/sndnvaps/ina219 |
max_upload_size | |
id | 673405 |
size | 55,140 |
INA219 current/power monitor driver for Rust
cargo build --example values --target=aarch64-unknown-linux-musl
cargo build --example raw_values --target=aarch64-unknown-linux-musl
cargo build --example physic_values --target=aarch64-unknown-linux-musl
ina219_rs = { version = "0.5.0", features = ["ina219"] }
//main.rs
extern crate linux_embedded_hal as hal;
extern crate ina219_rs as ina219;
use hal::I2cdev;
use ina219::physic;
use ina219::ina219::{INA219,Opts};
fn main() {
let device = I2cdev::new("/dev/i2c-1").unwrap();
let opt = Opts::new(0x42,100 * physic::MilliOhm,1 * physic::Ampere);
//let opt = Opts::default();
let mut ina = INA219::new(device,opt);
ina.init().unwrap();
let pm = ina.sense().unwrap();
println!("{:?}",pm);
/* output
Debug: PowerMonitor
{
Voltage = 8.228V,
Shunt_Voltage = 534µV,
Current = 1.750A,
Power = 744mW
}
*/
[dependencies.ina219_rs]
version = "0.5.0"
default-features = false # 不包含默认的features,而是通过下面的方式来指定
features = ["physic"]
//main.rs
extern crate ina219_rs as ina219;
use ina219::{
physic, physic::PhysicElectricCurrentSet, physic::PhysicElectricPotentialSet,
physic::PhysicPowerSet, physic::ToStringPhysic_current, physic::ToStringPhysic_potential,
physic::ToStringPhysic_power,
};
fn main() {
let current_test = physic::ElectricCurrent::setCurrent("+15mA");
match current_test {
Ok(v) => println!(
"current_set is {:?}",
(v as physic::ElectricCurrent).to_string_physic_current()
),
Err(e) => println!("current_set error = {:?}", e),
}
let power_test = physic::Power::setPower("150mW");
match power_test {
Ok(p) => println!(
"Power_set is {:?}",
(p as physic::Power).to_string_physic_power()
),
Err(e) => println!("Power_set error = {:?}", e),
}
let power_test_v1 = physic::Power::setPower("250W");
match power_test_v1 {
Ok(p) => println!(
"Power_set is {:?}",
(p as physic::Power).to_string_physic_power()
),
Err(e) => println!("Power_set error = {:?}", e),
}
let voltage_test = physic::ElectricPotential::setVoltage("100V");
match voltage_test {
Ok(v) => println!(
"voltage_set is {:?}",
(v as physic::ElectricPotential).to_string_physic_potential()
),
Err(e) => println!("voltage_set error = {:?}", e),
}
let voltage_test_v1 = physic::ElectricPotential::setVoltage("100mV");
match voltage_test_v1 {
Ok(v) => println!(
"voltage_set is {:?}",
(v as physic::ElectricPotential).to_string_physic_potential()
),
Err(e) => println!("voltage_set error = {:?}", e),
}
}