2 个不稳定版本
0.1.0 | 2023年5月16日 |
---|---|
0.0.0 | 2023年5月16日 |
#1909 在 算法
每月 21 次下载
16KB
298 行
电阻
电阻是一个基于色环计算电阻值的库。
use resistor::{ResistorBuilder, ResistorColor};
#[test]
fn test_red4() {
let resistor = ResistorBuilder::FourBand {
first: ResistorColor::Red,
second: ResistorColor::Red,
multiplier: ResistorColor::Red,
tolerance: ResistorColor::Red,
}
.build()
.unwrap();
assert_eq!(resistor.resistance, 2200.0);
assert_eq!(resistor.to_string(), "Resistor(2200Ω ± 2%)");
}