Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 368 Bytes

File metadata and controls

13 lines (11 loc) · 368 Bytes

Bluetooth lib for Rust using blueZ/dbus

Current state: Experimental

Examples

This example show how to get the first available bluetooth device.

let adapter: BluetoothAdapter = BluetoothAdapter::init().unwrap();
let device: BluetoothDevice = adapter.get_first_device().unwrap();
println!("{:?}", device);