#bluetooth #ikea #standing-desk

idasen

通过蓝牙控制IKEA IDÅSEN升降桌

6个版本

0.2.0 2022年2月12日
0.1.4 2021年2月24日
0.1.1 2020年10月7日

#1283硬件支持

35 每月下载
用于 idasen-cli

MIT 许可证

15KB
259

Idasen

通过蓝牙控制IKEA IDÅSEN升降桌。

Crates.io Version Crates.io License

用法

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

依赖项

~8–39MB
~580K SLoC