bluetooth_low_energy

A Flutter plugin for controlling the bluetooth low energy.

Features

CentralController

  • x SetUp/TearDown central controller.
  • x Get/Listen central state.
  • x Start/Stop discovery.
  • x Connect/Disconnect peripherals.
  • x Discover GATT.
  • x Get GATT services.
  • x Get GATT characteristics.
  • x Get GATT descriptors.
  • x Read/Write/Notify GATT characteristics.
  • x Read/Write GATT descriptors.

Getting Started

Add bluetooth_low_energy as a dependency in your pubspec.yaml file.

dependencies:
  bluetooth_low_energy: ^<latest-version>

Remember to call await CentralController.setUp() before use any apis of this plugin.

Note: Bluetooth Low Energy doesn't work on emulators, so use physical devices which has bluetooth features for development.

Android

Make sure you have a miniSdkVersion with 21 or higher in your android/app/build.gradle file.

iOS and macOS

According to Apple's documents, you must include the NSBluetoothAlwaysUsageDescription on or after iOS 13, and include the NSBluetoothPeripheralUsageDescription key before iOS 13.

Linux

Not tested enough, if you occured any problems, file an issue to let me know about it, i will fix it as soon as possible.

Windows

Not implemented yet but maybe someday or someone can use the win32 api to implement this plugin_interface or someday the flutter team support C# on windows platform or someday I am familiar with C++ language...