flutter_blue icon indicating copy to clipboard operation
flutter_blue copied to clipboard

Bluetooth plugin for Flutter

Results 220 flutter_blue issues
Sort by recently updated
recently updated
newest added

Flutter blue, doesn't show device names neither in device.name nor in advertisementData.localName WHY ? I'm trying to read an OBD II module and I'm having a hard time doing that,...

Hi, ios auto connect doesn't work when I connect more than one devices. Could you help me for this? Is there any config in info.plist file.?

- Update example to support flutter 3.0.5 (Deprecated API removed after v2.2 https://docs.flutter.dev/release/breaking-changes/2-2-deprecations#texttheme) - Update flutter-blue dependency rxdart to ^0.27.0

How can we send data to bluetooth device and wait till response.

This issue happened in other packages as well but was fixed by them. Please fix ASAP, package is unusable for M1 macs Error ``` Execution failed for task ':flutter_blue:generateDebugProto'. >...

Changed [this](https://github.com/pauldemarco/flutter_blue/pull/191) PR to come from `rmawatson:background_feature` instead of `rmawatson:master` Android: Swaps activity() calls for context() where only a context is required. The only place an activity is required is...

Hi, i hope it won't be redundant. I'm currently facing problem with FlutterBlue.instance.scanResults stream. I'm trying to display/process List of ScanResult and it shows stale results which are no longer...

Hi all, Using the example app from this repo, when I run `flutter run` from the terminal or from VSCode, the app runs and it gets access to the bluetooth...

// 1) Call device.disconnect(); await device.disconnect(); // 2) Call connected devices future in periodic stream (as shown in FlutterBlue examples) StreamBuilder( stream: Stream.periodic(Duration(seconds: 1)).asyncMap((_) => FlutterBlue.instance.connectedDevices), initialData: [], builder: (context,...

Having a HID device (any bluetooth button, or a selfie stick) and using the example app, I'm trying to setup a listener for a button pressed, I understand that's done...