A blazingly fast thin wrapper around the public Govee API written in Rust 🚀.
All REST methods of the official public Govee API are supported. See the table below for mapping of methods to endpoints.
| is supported | endpoint | method |
| ------------ | --------------------------------- | ------------------- |
| yes | GET /v1/appliance/devices | get_appliances
|
| yes | PUT /v1/appliance/devices/control | control_appliance
|
| yes | GET /v1/devices | get_devices
|
| yes | PUT /v1/devices/control | control_device
|
| yes | GET /v1/devices/state | get_device_state
|
To use the library you need to obtain a Govee Developer API key and set it to GOVEE_API_KEY
env variable. It is highly suggested to use .env file.
See below a short manual copied directly from the Govee API documentation. Please refer to that documentation in case the info below is not sufficient or it changed over time.
đź“‹ Steps to obtain a Govee Developer API Key
It is dead simple to use the govee-api
library.
rust
// make sure to run this inside an async function
const GOVEE_API_KEY: &str = "GOVEE_API_KEY"; // for the sake of security, please make sure this is read from env variable.
let govee_client = GoveeClient::new(&GOVEE_API_KEY);
// use any of the supported method from the table above
// example for get_devices()
let response: ApiResponseGoveeDevices = govee_client.get_devices().await;
let devices = response.data.unwrap();
See this repo for an inspiration how to use govee-api
in various scenarios.