FLUTTER ECOSYSTEM

canonical/bluez.dart

提供一個客戶端,用於連接到 [BlueZ](http://www.bluez.org/) —— Linux 藍牙堆疊。

bluez.dart 專案封面
Stars
59
Forks
24
最近推送(UTC)
2025年8月25日
專案狀態
未封存
Canonical GitHub avatar
GITHUB Organization

Canonical ↗

語言Dart

此儲存庫發佈的套件

使用的依賴

依賴清單 4 項
  • dbus^0.7.11
  • lints開發依賴^2.0.0
  • test開發依賴^1.16.8
  • test_cov開發依賴^1.0.1

原始 README

以下為英文專案原文快照,最新內容請造訪 GitHub。

展開 / 收合專案 README

Pub Package codecov

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

Supported platforms

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.

Contributing to bluez.dart

We welcome contributions! See the contribution guide for more details.