1 unstable release
0.1.0 | Jan 9, 2023 |
---|
#847 in Hardware support
18KB
460 lines
owon-spe support crate
Helper crate for the SCPI protocol as spoken by the Owon SPE power supplies; Tested on an Owon SPE 3102
use owon_spe::SPE;
fn main() {
let mut spe = SPE::from_serialport("/dev/ttyUSB0").unwrap();
let info = spe.idn().unwrap();
println!("Model: {}, Serial: {}, FW: {}", info.model, info.serial, info.fw);
}
Dependencies
~0.3–2MB
~37K SLoC