FLUTTER ECOSYSTEM

canonical/bluez.dart

Bietet einen Client zur Verbindung mit [BlueZ](http://www.bluez.org/) – dem Linux-Bluetooth-Stack.

Projektcover von bluez.dart
Stars
59
Forks
24
Letzter Push (UTC)
25.08.2025
Projektstatus
Aktiv
Canonical GitHub avatar
GITHUB Organization

Canonical ↗

SprachenDart

Von diesem Repository veröffentlichte Pakete

Verwendete Abhängigkeiten

Abhängigkeiten 4 Einträge
  • dbus^0.7.11
  • lintsEntwicklung^2.0.0
  • testEntwicklung^1.16.8
  • test_covEntwicklung^1.0.1

Original-README

Englischer Projektschnappschuss. Aktuelle Inhalte auf GitHub.

Projekt-README ein-/ausklappen

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.