js-apis-driver-deviceManager.md 9.0 KB
Newer Older
D
dongbinbin 已提交
1 2 3 4 5 6 7 8 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
# @ohos.driver.deviceManager (外设管理)

本模块主要提供管理外部设备的相关功能,包括查询设备列表、绑定设备和解除绑定设备。

>  **说明:**
> 
> 本模块首批接口从API version 10开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。

## 导入模块

```js
import deviceManager from "@ohos.driver.deviceManager";
```

## deviceManager.queryDevices

queryDevices(busType?: number): Array<Readonly<Device>>

获取接入主设备的外部设备列表。如果没有设备接入,那么将会返回一个空的列表。

**系统能力:**  SystemCapability.Driver.ExternalDevice

**参数:**

| 参数名  | 类型   | 必填 | 说明                                 |
| ------- | ------ | ---- | ------------------------------------ |
| busType | number | 否   | 设备总线类型,不填则查找所有类型设备 |

**返回值:**

| 类型                                           | 说明           |
| ---------------------------------------------- | -------------- |
| Array<Readonly<[Device](#device)>> | 设备信息列表。 |

**错误码:**

D
dongbinbin 已提交
37 38 39 40
| 错误码ID | 错误信息                                 |
| -------- | ---------------------------------------- |
| 401      | The parameter check failed.              |
| 22900001 | ExternalDeviceManager service exception. |
D
dongbinbin 已提交
41 42 43 44 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

**示例:**

```js
try {
  let devices = deviceManager.queryDevices(deviceManager.BusType.USB);
  for (let item of devices) {
    console.info('Device id is ${item.deviceId}')
  }
} catch (error) {
  console.error('Failed to query device. Code is ${error.code}, message is ${error.message}');
}
```

## deviceManager.bindDevice

bindDevice(deviceId: number, onDisconnect: AsyncCallback<number>,
  callback: AsyncCallback<{deviceId: number, remote: rpc.IRemoteObject}>): void;

根据queryDevices()返回的设备信息绑定设备。

需要调用[deviceManager.queryDevices](#devicemanagerquerydevices)获取设备信息以及device。

**系统能力:**  SystemCapability.Driver.ExternalDevice

**参数:**

| 参数名       | 类型                                                                                                 | 必填 | 说明                                   |
| ------------ | ---------------------------------------------------------------------------------------------------- | ---- | -------------------------------------- |
D
dongbinbin 已提交
70
| deviceId     | number                                                                                               | 是   | 设备ID,通过queryDevices获得           |
D
dongbinbin 已提交
71 72 73 74 75
| onDisconnect | AsyncCallback<number>                                                                          | 是   | 绑定设备断开的回调                     |
| callback     | AsyncCallback<{deviceId: number, remote: [rpc.IRemoteObject](./js-apis-rpc.md#iremoteobject)}> | 是   | 绑定设备的回调,返回绑定设备的通信对象 |

**错误码:**

D
dongbinbin 已提交
76 77 78 79
| 错误码ID | 错误信息                                 |
| -------- | ---------------------------------------- |
| 401      | The parameter check failed.              |
| 22900001 | ExternalDeviceManager service exception. |
D
dongbinbin 已提交
80 81 82 83 84

**示例:**

```js
try {
D
dongbinbin 已提交
85
  deviceManager.bindDevice(12345678, (error, data) => {
D
dongbinbin 已提交
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
    console.error('Device is disconnected');
  }, (error, data) => {
    if (error) {
      console.error('bindDevice async fail. Code is ${error.code}, message is ${error.message}');
      return;
    }
    console.info('bindDevice success');
  });
} catch (error) {
  console.error('bindDevice fail. Code is ${error.code}, message is ${error.message}');
}
```

## deviceManager.bindDevice

bindDevice(deviceId: number, onDisconnect: AsyncCallback<number>): Promise<{deviceId: number,
  remote: rpc.IRemoteObject}>;

根据queryDevices()返回的设备信息绑定设备。

需要调用[deviceManager.queryDevices](#devicemanagerquerydevices)获取设备信息以及device。

**系统能力:**  SystemCapability.Driver.ExternalDevice

**参数:**

| 参数名       | 类型                        | 必填 | 说明                         |
| ------------ | --------------------------- | ---- | ---------------------------- |
D
dongbinbin 已提交
114
| deviceId     | number                      | 是   | 设备ID,通过queryDevices获得 |
D
dongbinbin 已提交
115 116 117 118 119 120 121 122 123 124
| onDisconnect | AsyncCallback<number> | 是   | 绑定设备断开的回调           |

**返回值:** 

| 类型                                                                                           | 说明                                         |
| ---------------------------------------------------------------------------------------------- | -------------------------------------------- |
| Promise<{deviceId: number, remote: [rpc.IRemoteObject](./js-apis-rpc.md#iremoteobject)}> | Promise对象,返回设备ID和IRemoteObject对象。 |

**错误码:**

D
dongbinbin 已提交
125 126 127 128
| 错误码ID | 错误信息                                 |
| -------- | ---------------------------------------- |
| 401      | The parameter check failed.              |
| 22900001 | ExternalDeviceManager service exception. |
D
dongbinbin 已提交
129 130 131 132 133

**示例:**

```js
try {
D
dongbinbin 已提交
134
  deviceManager.bindDevice(12345678, (error, data) => {
D
dongbinbin 已提交
135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157
    console.error('Device is disconnected');
  }).then(data => {
    console.info('bindDevice success');
  }, error => {
    console.error('bindDevice async fail. Code is ${error.code}, message is ${error.message}');
  });
} catch (error) {
  console.error('bindDevice fail. Code is ${error.code}, message is ${error.message}');
}
```

## deviceManager.unbindDevice

unbindDevice(deviceId: number, callback: AsyncCallback<number>): void

解除设备绑定。

**系统能力:**  SystemCapability.Driver.ExternalDevice

**参数:**

| 参数名   | 类型                        | 必填 | 说明                           |
| -------- | --------------------------- | ---- | ------------------------------ |
D
dongbinbin 已提交
158
| deviceId | number                      | 是   | 设备ID,通过queryDevices获得。 |
D
dongbinbin 已提交
159 160 161 162
| callback | AsyncCallback<number> | 是   | 解绑完成的回调。               |

**错误码:**

D
dongbinbin 已提交
163 164 165 166
| 错误码ID | 错误信息                                 |
| -------- | ---------------------------------------- |
| 401      | The parameter check failed.              |
| 22900001 | ExternalDeviceManager service exception. |
D
dongbinbin 已提交
167 168 169 170 171

**示例:**

```js
try {
D
dongbinbin 已提交
172
  deviceManager.unbindDevice(12345678, (error, data) => {
D
dongbinbin 已提交
173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194
  if (error) {
    console.error('unbindDevice async fail. Code is ${error.code}, message is ${error.message}');
    return;
  }
  console.info('unbindDevice success');
  });
} catch (error) {
  console.error('unbindDevice fail. Code is ${error.code}, message is ${error.message}');
}
```
## deviceManager.unbindDevice

unbindDevice(deviceId: number): Promise<number>

解除设备绑定。

**系统能力:**  SystemCapability.Driver.ExternalDevice

**参数:**

| 参数名   | 类型   | 必填 | 说明                           |
| -------- | ------ | ---- | ------------------------------ |
D
dongbinbin 已提交
195
| deviceId | number | 是   | 设备ID,通过queryDevices获得。 |
D
dongbinbin 已提交
196 197 198

**错误码:**

D
dongbinbin 已提交
199 200 201 202
| 错误码ID | 错误信息                                 |
| -------- | ---------------------------------------- |
| 401      | The parameter check failed.              |
| 22900001 | ExternalDeviceManager service exception. |
D
dongbinbin 已提交
203 204 205 206 207 208 209 210 211 212 213

**返回值:** 

| 类型                  | 说明                      |
| --------------------- | ------------------------- |
| Promise<number> | Promise对象,返回设备ID。 |

**示例:**

```js
try {
D
dongbinbin 已提交
214
  deviceManager.unbindDevice(12345678).then(data => {
D
dongbinbin 已提交
215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255
    console.info('unbindDevice success');
  }, error => {
    console.error('unbindDevice async fail. Code is ${error.code}, message is ${error.message}');
  });
} catch (error) {
  console.error('unbindDevice fail. Code is ${error.code}, message is ${error.message}');
}
```

## Device

外设信息。

**系统能力:** SystemCapability.Driver.ExternalDevice

| 名称        | 类型                | 必填 | 说明       |
| ----------- | ------------------- | ---- | ---------- |
| busType     | [BusType](#bustype) | 是   | 总线类型。 |
| deviceId    | number              | 是   | 设备ID。   |
| description | string              | 是   | 设备描述。 |

## USBDevice

USB设备信息。

**系统能力:** SystemCapability.Driver.ExternalDevice

| 名称      | 类型   | 必填 | 说明                |
| --------- | ------ | ---- | ------------------- |
| vendorId  | number | 是   | USB设备Vendor ID。  |
| productId | number | 是   | USB设备Product ID。 |

## BusType

设备总线类型。

**系统能力:** SystemCapability.Driver.ExternalDevice

| 名称 | 值  | 说明          |
| ---- | --- | ------------- |
| USB  | 1   | USB总线类型。 |