Skip to content

Latest commit

 

History

History
14 lines (12 loc) · 397 Bytes

README.md

File metadata and controls

14 lines (12 loc) · 397 Bytes

Bluetooth lib for Rust using blueZ/dbus

Current state: Experimental Required bluez version: 5.44

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