Skip to main content
Version: Next

Taro.makeBluetoothPair(option)

蓝牙配对接口,仅安卓支持

通常情况下(需要指定 pin 码或者密码时)系统会接管配对流程,直接调用 Taro.createBLEConnection 即可。该接口只应当在开发者不想让用户手动输入 pin 码且真机验证确认可以正常生效情况下用。

支持情况:

参考文档

类型

(option: Option) => Promise<TaroGeneral.CallbackResult>

参数

参数类型
optionOption

Option

参数类型默认值必填说明
deviceIdstring蓝牙设备 id
pinstringpin 码,Base64 格式
timeoutstring20000超时时间,单位 ms
complete(res: TaroGeneral.CallbackResult) => void接口调用结束的回调函数(调用成功、失败都会执行)
fail(res: TaroGeneral.CallbackResult) => void接口调用失败的回调函数
success(res: TaroGeneral.CallbackResult) => void接口调用成功的回调函数