#api-bindings #daikin #altherma #brp069a62 #brp069a61

daikin_altherma

A client for Daikin Altherma LAN adapters

2 releases

0.0.2 Mar 4, 2024
0.0.1 Mar 3, 2024

#1238 in #api-bindings

33 downloads per month

MIT/Apache

13KB
238 lines

Daikin Altherma Rust client

This project interfaces with Daikin Altherma LAN adapters (BRP069A61 BRP069A62).

This is a Rust port of the excellent python-daikin-altherma

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);

lib.rs:

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);

Dependencies

~3–4MB
~110K SLoC