Crates.io | daikin_altherma |
lib.rs | daikin_altherma |
version | 0.0.2 |
source | src |
created_at | 2024-03-03 16:12:02.142077 |
updated_at | 2024-03-04 19:47:27.350348 |
description | A client for Daikin Altherma LAN adapters |
homepage | https://github.com/Frankkkkk/daikin-altherma-rs |
repository | https://github.com/Frankkkkk/daikin-altherma-rs |
max_upload_size | |
id | 1160731 |
size | 23,902 |
This project interfaces with Daikin Altherma LAN adapters (BRP069A61 BRP069A62).
This is a Rust port of the excellent python-daikin-altherma
This rust crate interfaces with Daikin Altherma LAN adapteros.
There are two firmware versions of the LAN adapters:
This library only supports the second one for the moment.
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);