This library allows you to easily control your Elgato Keylight.
You can test the library easy by opening examples/from_name.rs
. from_name.rs
and from_ip.rs
has identical functionality, only differing in how they connect.
```rust //Lookup lamp by name (using zeroconf) let mut kl = KeyLight::newfromname("Key Light Left", true).await.unwrap();
//Turn on the light kl.set_power(true).await.unwrap();
//Set brightness to 30 kl.set_brightness(30).await.unwrap() ```
Just open a PR LUL
All under MIT