Crates.io | cute_lights |
lib.rs | cute_lights |
version | 0.3.0 |
source | src |
created_at | 2024-07-14 18:05:18.492464 |
updated_at | 2024-07-22 16:39:41.931206 |
description | A Rust library for controlling Smart Lights |
homepage | https://github.com/bedsteler20/cute-lights-sdk |
repository | https://github.com/bedsteler20/cute-lights-sdk |
max_upload_size | |
id | 1303166 |
size | 113,486 |
Cute Lights is a simple library for controlling various types of smart lights threw a unified api. It is designed to be simple to use and easy to extend. It can be used as a rust crate or a c shared library. With bindings for dotnet and python.
use cute_lights::{discover_lights, CuteResult};
use std::thread::sleep;
use std::time::Duration;
#[tokio::main]
async fn main() -> CuteResult<()> {
let mut lights = discover_lights().await;
loop {
for light in lights.iter_mut() {
light.set_on(true).await?;
light.set_color(255, 0, 0).await?;
light.set_brightness(100).await?;
sleep(Duration::from_secs(1));
}
}
}
The configuration file is located at ~/.config/cute_lights/lights.toml
. It is used to store the ip addresses and api keys for lights. The file should look like this:
[kasa]
enabled = true
addresses = [
"192.168.86.xx",
"192.168.86.xx",
]
[govee]
enabled = true
addresses = ["192.168.86.xx"]
[hue]
enabled = true
bridge_ip = "192.168.86.xx"
username = "<Your Hue Api Key>"