1 unstable release
0.1.0 | Apr 23, 2022 |
---|
#590 in Authentication
14KB
342 lines
TRÅDFRI
coap-client
wrapper for controlling IKEA TRÅDFRI devices.
Usage
- Install
coap-client
using the install script. - Find the IP address and the security code (on the back) of your gateway.
- Authenticate your client
use std::net::Ipv4Addr;
use tradfri::gateway::Gateway;
const IP: Ipv4Addr = Ipv4Addr::new(192, 168, 0, 7);
const SECURITY_CODE: &'static str = "<SECURITY_CODE>";
...
let mut gateway = Gateway::new(IP, SECURITY_CODE);
if let Err(err) = gateway.authenticate("<username>") {
println!("Already authenticated.")
}
- Switch the lights!
use std::thread;
use std::time::Duration;
...
let devices = gateway.get_device_ids().unwrap();
println!("{} devices found: {:?}", devices.len(), devices);
let device = gateway.get_device_by_id(devices[1]).unwrap();
device.turn_off().unwrap();
thread::sleep(Duration::from_secs(2));
device.turn_on().unwrap();
Disclaimer
Incredibly hacky and a work in progress (:
2022 © MIT License
Dependencies
~0.8–1.6MB
~35K SLoC