Crates.io | blurz |
lib.rs | blurz |
version | 0.4.0 |
source | src |
created_at | 2016-03-03 10:09:25.435543 |
updated_at | 2018-11-07 16:30:34.98572 |
description | Bluetooth lib for Rust using blueZ/dbus |
homepage | |
repository | https://github.com/szeged/blurz |
max_upload_size | |
id | 4349 |
size | 64,544 |
Current state: Experimental Required bluez version: 5.44
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);