2个版本
使用旧版Rust 2015
0.1.1 | 2017年7月16日 |
---|---|
0.1.0 | 2017年7月16日 |
#823 在 硬件支持
29 每月下载量
10KB
211 行
HS100 API for Rust
Rust中访问HS100/110功能的简单库。
特别感谢:https://github.com/sausheong/hs1xxplug,该Go版本(这个库基本上是从这个版本移植过来的)。
关于HS110逆向工程的资源:https://www.softscheck.com/en/reverse-engineering-tp-link-hs110/
使用
extern crate hs100;
use hs100::SmartPlug;
use hs100::error::Error;
const HOST: &'static str = "192.168.0.37:9999"; // your device IP
fn main() {
let api = SmartPlug::new(HOST);
// Quick example:
println!("[sysinfo]: {:?}\n", api.sysinfo());
println!("[meterinfo]: {:?}\n", api.meterinfo());
println!("[dailystats]: {:?}\n", api.dailystats(7, 2017));
// Handle specific error types:
match api.sysinfo() {
Ok(info) => println!("[sysinfo]: {:?}\n", info),
Err(err) => {
match err {
Error::IoError(_) => println!("some io error occurred"),
Error::EncryptError => println!("error encrypting the message"),
Error::DeserializeError(_) => println!("couldn't deserialize the message"),
}
}
}
// See the example folder for more usage patterns.
}
待办事项
将json反序列化为结构体适当的错误处理- 使用Futures / 异步I/O
许可证
MIT
依赖项
~0.8–1.6MB
~36K SLoC