v0.8.3
bluez
提供一个客户端以连接到 BlueZ - Linux 蓝牙堆栈。
42喜欢 19万近 30 天下载155Pub 分数
Linux
提供一个客户端,用于连接到 [BlueZ](http://www.bluez.org/) —— Linux 蓝牙堆栈。
以下为英文项目原文快照,最新内容请访问 GitHub。
Provides a client to connect to BlueZ - the Linux Bluetooth stack.
import 'package:bluez/bluez.dart';
final client = BlueZClient();
await client.connect();
for (final device in client.devices) {
print('Device ${device.address} ${device.alias}');
}
await client.close();
This package is designed for use on Linux, as the BlueZ stack is Linux-specific (other platforms have their own Bluetooth stacks). You can safely include this package when writing applications that work on multiple platforms, but it will fail with an exception when being used if BlueZ is not present.
We welcome contributions! See the contribution guide for more details.