blurz 0.1.8

Bluetooth lib for Rust using blueZ/dbus
blurz-0.1.8 has been yanked.
Visit the last successful build: blurz-0.4.0

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