Skip to main content
Version: Next

Taro.getBluetoothAdapterState(option)

Gets the status of the local Bluetooth adapter.

Reference

Type

(option?: Option) => Promise<SuccessCallbackResult>

Parameters

Option

PropertyTypeRequiredDescription
complete(res: any) => voidNoThe callback function used when the API call completed (always executed whether the call succeeds or fails)
fail(res: any) => voidNoThe callback function for a failed API call
success(res: Result) => voidNoThe callback function for a successful API call

SuccessCallbackResult

PropertyTypeDescription
availablebooleanIndicates whether the Bluetooth adapter is available
discoveringbooleanIndicates whether a device discovery is performed
errMsgstringsuccess: ok; fail: error message.

Sample Code

Taro.getBluetoothAdapterState({
success: function (res) {
console.log(res)
}
})

API Support

APIWeChat Mini-ProgramH5React Native
Taro.getBluetoothAdapterState✔️