js-apis-system-bluetooth.md 5.0 KB
Newer Older
Z
zengyawen 已提交
1 2 3 4
# 蓝牙


> ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:**
Z
zengyawen 已提交
5 6 7 8
>
> - 从API Version 7 开始,该接口不再维护,推荐使用新接口[`@ohos.bluetooth`](js-apis-bluetooth.md)。
>
> - 本模块首批接口从API version 6开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。
Z
zengyawen 已提交
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43


## 导入模块


```
import bluetooth from '@system.bluetooth';
```

## bluetooth.startBLEScan(OBJECT)

开始搜寻附近的低功耗蓝牙外围设备。此操作比较耗费系统资源,请在搜索并连接到设备后调用[bluetooth.stopBLEScan](#bluetoothstopblescanobject)方法停止搜索。

**需要权限:** ohos.permission.DISCOVER_BLUETOOTH、ohos.permission.LOCATION

**系统能力:** SystemCapability.Communication.Bluetooth.Lite

**参数:**
**表1** StartBLEScanOptions

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| interval | number | 否 | 上报设备的间隔,单位毫秒,默认值为0。0表示找到新设备立即上报,其他数值根据传入的间隔上报。 |
| success | Function | 否 | 接口调用成功的回调函数。 |
| fail | Function | 否 | 接口调用失败的回调函数。 |
| complete | Function | 否 | 接口调用结束的回调函数。 |

**示例:**

  ```
  bluetooth.startBLEScan({
    success() {
      console.log('call bluetooth.startBLEScan success.');
    },
    fail(code, data) {
44
      console.log('call bluetooth.startBLEScan failed, code: ${code}, data: ${data}.');
Z
zengyawen 已提交
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
    },
    complete() {
      console.log('call bluetooth.startBLEScan complete.');
    }
  });
  ```


## bluetooth.stopBLEScan(OBJECT)

停止搜寻附近的低功耗蓝牙外围设备。与[bluetooth.startBLEScan(OBJECT)](#bluetoothstartblescanobject)接口配套使用。

**需要权限:** ohos.permission.DISCOVER_BLUETOOTH、ohos.permission.LOCATION

**系统能力:** SystemCapability.Communication.Bluetooth.Lite

**参数:**
**表2** StopBLEScanOptions

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| success | Function | 否 | 接口调用成功的回调函数。 |
| fail | Function | 否 | 接口调用失败的回调函数。 |
| complete | Function | 否 | 接口调用结束的回调函数。 |

**示例:**

  ```
  bluetooth.stopBLEScan({
S
smartbao 已提交
74
    interval:0,
Z
zengyawen 已提交
75 76 77 78
    success() {
      console.log('call bluetooth.stopBLEScan success.');
    },
    fail(data, code) {
79
      console.log('call bluethooth.stopBLEScan fail, code: ${code}, data: ${data}.');
Z
zengyawen 已提交
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
    },
    complete() {
      console.log('call bluethooth.stopBLEScan complete.');
    }
  });
  ```


## bluetooth.subscribeBLEFound(OBJECT)

订阅寻找到新设备。再次调用时,会覆盖前一次调用效果,即仅最后一次调用生效。

**需要权限:**  ohos.permission.DISCOVER_BLUETOOTH、ohos.permission.LOCATION

**系统能力:** SystemCapability.Communication.Bluetooth.Lite

**参数:**
**表3** SubscribeBLEFoundOptions

| 参数 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| success | Function | 是 | 寻找到新设备上报时调用的回调函数。 |
| fail | Function | 否 | 接口调用失败的回调函数。 |

**表4** success返回值:

| 参数名 | 类型 | 说明 |
| -------- | -------- | -------- |
| devices | Array<BluetoothDevice> | 新搜索到的设备列表。 |

**表5** BluethoothDevice

| 参数名 | 类型 | 说明 |
| -------- | -------- | -------- |
| addrType | string | 设备地址类型,可能值有:<br/>-&nbsp;public:&nbsp;公共地址<br/>-&nbsp;random:&nbsp;随机地址 |
| addr | string | 设备MAC地址。 |
| rssi | number | 设备蓝牙的信号强弱指标。 |
| txpower | string | 广播数据中的txpower字段。 |
| data | hex&nbsp;string | 广播数据(包含广播数据和扫描响应数据),十六进制字符串。 |

**示例:**

  ```
S
smartbao 已提交
123
  bluetooth.startBLEScan({
Z
zengyawen 已提交
124 125 126 127 128 129 130 131 132 133 134
    success() {
      bluetooth.subscribeBLEFound({
        success(data) {
          const [device] = data.devices;
          if (!!device) {
            bluetooth.stopBLEScan();
          }
        }
      });
    },
    fail(code, data) {
135
      console.log('Failed to start BLE device scan, code: ${code}, data: ${data}');
Z
zengyawen 已提交
136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
    }
  });
  ```


## bluetooth.unsubscribeBLEFound()

解除订阅寻找到新设备。

**需要权限:**  ohos.permission.DISCOVER_BLUETOOTH、ohos.permission.LOCATION

**系统能力:** SystemCapability.Communication.Bluetooth.Lite

**示例:**

  ```
  bluetooth.unsubscribeBLEFound();
  ```


## 常见错误码

| 错误码 | 说明 |
| -------- | -------- |
| 1100 | 是否处于已连接状态。 |
| 1101 | 当前蓝牙适配器不可用。 |
| 1102 | 没有找到指定设备。 |
| 1103 | 连接失败。 |
| 1104 | 没有找到指定服务。 |
| 1105 | 没有找到指定特征值。 |
| 1106 | 当前连接已断开。 |
| 1107 | 当前特征值不支持此操作。 |
| 1108 | 其余所有系统上报的异常。 |
| 1109 | 系统版本不支持&nbsp;BLE。 |