idasen

Crates.ioidasen
lib.rsidasen
version0.2.0
sourcesrc
created_at2020-10-06 13:48:14.077456
updated_at2022-02-12 12:23:22.101391
descriptionControl IKEA IDÅSEN standing desk via Bluetooth.
homepagehttps://github.com/aklajnert/idasen
repositoryhttps://github.com/aklajnert/idasen
max_upload_size
id296625
size14,549
Andrzej Klajnert (aklajnert)

documentation

README

Idasen

Control IKEA IDÅSEN standing desk via Bluetooth.

Crates.io Version Crates.io License

Usage

use idasen::{get_instance, Idasen, Device};

// instantiate the struct, this will attempt to connect to the desk 
// and discover its characteristics
let desk: Idasen<impl Device> = get_instance().await?;

// alternatively, if there's more than one desk you can get the 
// correct one by it's mac address 
// for some reason, using MAC seems to be more reliable when it 
// comes to device discovering:
// let desk = get_instance_by_mac("EC:86:F6:44:D3:31")?;

// move desk up and down
desk.up().await;
desk.down().await;

// stop desk from moving
desk.stop().await;

// move desk to desired position: 
//  minimum: 6200 (62cm), maximum: 12700 (1.27m)
desk.move_to(7400).await;

// get the position as an integer (10 = 1mm)
println!("Position: {}", desk.position()?);
Commit count: 29

cargo fmt