ESPHome Client
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 protobuf
Example
Basic example retrieving device info:
use ;
// 32-byte, base64 encoded api key
const KEY: &str = "AAECAwQFBgcICRAREhMUFRYXGBkgISIjJCUmJygpMDE=";
async
API Versions
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:
- 1.13 (
api-1-13) (2025.11.0) this is the current default - 1.12 (
api-1-12) (2025.8.0) - 1.10 (
api-1-10) (2025.5.0) - 1.9 (
api-1-9) (2024.4.0) - 1.8 (
api-1-8) (2023.5.0)
Follow the guide in the proto dir to see how to add a new version.
Future
Some things to be added/improved in the future:
- Automatic updates to newly released ESPHome API versions
- Connection pooling
License
esphome-client is distributed under the terms of the MIT License.
See LICENSE for details.
Copyright 2025 Daan Sieben