跳至主要內容

BluetoothPlugin.requestAndConnectDevice()

BFChainPluginBluetoothPluginrequestAndConnectDevice小于 1 分钟

BluetoothPlugin.requestAndConnectDevice()是一个实现了对蓝牙设备的查询和连接的接口;这个请求必须在Bluetooth.open()之后Bluetooth.close()之前执行;

BluetoothPlugin.requestAndConnectDevice(options)

参数

返回值

示例

  import { bluetoothPlugin } from "@plaoc/plugins";

  bluetoothPlugin
  .open()
  .then(res => {
    if(res.success){
      const options = {
        acceptAllDevices: true,
        optionalServices: ["00003802-0000-1000-8000-00805f9b34fb"],
      }
      return bluetoothPlugin.requestAndConnectDevice(options)
    }
  })
  .then(res => {
    if(res.success){
      // 成功的查询和连接了蓝牙设备;
    }
  })

平台兼容性

属性/方法/事件AndroidIOSDesktop-DevDesktop
requestAndConnectDeviceX

相关链接

BluetoothPlugin

评论
  • 按正序
  • 按倒序
  • 按热度
Powered by Waline v2.15.7