v0.8.3
bluez
Linux 블루투스 스택인 BlueZ에 연결하는 클라이언트를 제공합니다.
42좋아요 19만30일 다운로드155Pub 점수
Linux
[BlueZ](http://www.bluez.org/) - 리눅스 블루투스 스택에 연결할 수 있는 클라이언트를 제공합니다.
아래는 영문 원문 스냅샷입니다. 최신 내용은 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.