#smart #tp-link #plugs #error #manipulate #hs100 #hs110

hs100api

一个用于操作和从TP-Link HS-100/110智能插座获取数据的库

2个版本

使用旧版Rust 2015

0.1.1 2017年7月16日
0.1.0 2017年7月16日

#823硬件支持

29 每月下载量

MIT 许可证

10KB
211

HS100 API for Rust

CratesIo

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