Skip to content

Simple library to easily communicate with a tp link smart device.

Notifications You must be signed in to change notification settings

cshjsc/tplink-shome-protocol

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TP Link home protocol for rust

Simple library to easily communicate with a tp link smart device.

Made possible by this article.

Usage

use std::io;
use std::net::TcpStream;

use tplink_shome_protocol::{receive_message, send_message};

fn main() -> io::Result<()> {
    let stream = TcpStream::connect("192.168.1.1:9999")?;
    let raw = r#"{"system":{"get_sysinfo":{}}}"#;
    send_message(&stream, raw)?;
    let message = receive_message(&stream)?;
    ...
}

About

Simple library to easily communicate with a tp link smart device.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages