| Crates.io | esphome-client |
| lib.rs | esphome-client |
| version | 0.1.2 |
| created_at | 2025-10-19 20:25:11.314979+00 |
| updated_at | 2025-11-28 22:25:44.617808+00 |
| description | ESPHome client library for Rust |
| homepage | https://github.com/daanoz/esphome-client |
| repository | https://github.com/daanoz/esphome-client |
| max_upload_size | |
| id | 1890902 |
| size | 449,900 |
This crate contains a library for interacting with ESPHome devices using sockets. It provides all the necessary functionality to connect, authenticate, and communicate with ESPHome devices. The library is designed to be used as a dependency in other Rust projects that require communication with ESPHome devices.
To be able to compile this crate you will need to install the protobuf compiler protoc. Official installation instructions can be found here. Depending on your system, you can also rely on installers:
apt install protobuf-compilerbrew install protobufBasic example retrieving device info:
use esphome_client::{EspHomeClient, types};
// 32-byte, base64 encoded api key
const KEY: &str = "AAECAwQFBgcICRAREhMUFRYXGBkgISIjJCUmJygpMDE=";
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
let mut client = EspHomeClient::builder()
.address("192.168.0.2:6053")
.key(KEY)
.connect()
.await?;
client.try_write(types::DeviceInfoRequest {}).await?;
loop {
let response = client.try_read().await?;
match response {
types::EspHomeMessage::DeviceInfoResponse(response) => {
println!("Received DeviceInfoResponse: {:?}", response);
}
_ => {
println!("Received unsupported message type: {:?}", response);
}
}
}
}
Different API versions used during communication can be enabled using features. By default, it will use the latest available. Note this means your implementation might break if you don't pin down the used version and this crate is updated. It's recommended that you add the feature flag with the version in your Cargo.toml to avoid unexpected issues in the future.
Currently supported:
api-1-13) (2025.11.0) this is the current defaultapi-1-12) (2025.8.0)api-1-10) (2025.5.0)api-1-9) (2024.4.0)api-1-8) (2023.5.0)Follow the guide in the proto dir to see how to add a new version.
Some things to be added/improved in the future:
esphome-client is distributed under the terms of the MIT License.
See LICENSE for details.
Copyright 2025 Daan Sieben