ESPHome.rs

ESPHome API client for Rust.

Usage

````rust use esphome::Connection; use std::net::TcpStream;

let mut stream = TcpStream::connect(opt.address)?; let mut writestream = stream.tryclone()?; let connection = Connection::new(&mut stream, &mut writestream); let device = connection.connect()?; println!("Connected to {}", device.serverinfo());

if let Some(password) = opt.password { let ad = device.authenticate(&password)?; // ... } ````

Running an example

sh cargo run --example connect -- -a some.device:6053 -p some_password

License

MIT except for the following: