Crate daikin_altherma
source ·Expand description
§API to Daikin Altherma LAN Adapters
This rust crate interfaces with Daikin Altherma LAN adapteros.
There are two firmware versions of the LAN adapters:
- Cloud connected
- LAN only
This library only supports the second one for the moment.
§Usage
Using this library is rather easy:
let mut client = DaikinAlthermaClient::new("192.168.11.100".to_string()).unwrap();
let hp = client.get_heating_parameters().unwrap();
println!("Heating: {:?}", hp);
client.set_heating_setpoint_temperature(20.0);