FLUTTER ECOSYSTEM

canonical/bluez.dart

[BlueZ](http://www.bluez.org/) - 리눅스 블루투스 스택에 연결할 수 있는 클라이언트를 제공합니다.

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.