Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
5a0a2f10
D
Docs
项目概览
OpenHarmony
/
Docs
大约 1 年 前同步成功
通知
159
Star
292
Fork
28
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
Docs
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
5a0a2f10
编写于
5月 06, 2022
作者:
L
lee
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add bluetooth HID interface_js_doc
Signed-off-by:
N
lee
<
lilong32@huawei.com
>
上级
da2243ec
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
199 addition
and
44 deletion
+199
-44
zh-cn/application-dev/reference/apis/js-apis-bluetooth.md
zh-cn/application-dev/reference/apis/js-apis-bluetooth.md
+199
-44
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-bluetooth.md
100755 → 100644
浏览文件 @
5a0a2f10
...
...
@@ -13,17 +13,6 @@ import bluetooth from '@ohos.bluetooth';
```
## 权限
ohos.permission.USE_BLUETOOTH
ohos.permission.MANAGE_BLUETOOTH
ohos.permission.DISCOVER_BLUETOOTH
ohos.permission.LOCATION
## bluetooth.enableBluetooth<sup>8+</sup><a name="enableBluetooth"></a>
enableBluetooth(): boolean
...
...
@@ -237,6 +226,8 @@ cancelPairedDevice(deviceId: string): boolean
**系统能力**
:SystemCapability.Communication.Bluetooth.Core。
**系统API**
:该接口为系统接口,三方应用不支持调用。
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
...
...
@@ -979,13 +970,13 @@ getProfile(profileId: ProfileId): A2dpSourceProfile | HandsFreeAudioGatewayProfi
| 参数名 | 类型 | 必填 | 说明 |
| --------- | --------- | ---- | ------------------------------------- |
|
ProfileId | profileId
| 是 | 表示profile的枚举值,例如:PROFILE_A2DP_SOURCE。 |
|
profileId |
[
ProfileId
](
#ProfileId
)
| 是 | 表示profile的枚举值,例如:PROFILE_A2DP_SOURCE。 |
**返回值:**
| 类型
| 说明
|
| ----------------------------------------
|
---------------------------------------- |
|
A2dpSourceProfile 或者 HandsFreeAudioGatewayProfile
| 对应的profile的对象实例,当前支持A2dpSourceProfile, HandsFreeAudioGatewayProfile。 |
| 类型
| 说明
|
| ----------------------------------------
-------------------- | --------------------
---------------------------------------- |
|
[
A2dpSourceProfile
](
#A2dpSourceProfile
)
或
[
HandsFreeAudioGatewayProfile
](
#HandsFreeAudioGatewayProfile
)
| 对应的profile的对象实例,当前支持A2dpSourceProfile, HandsFreeAudioGatewayProfile。 |
**示例:**
...
...
@@ -993,6 +984,32 @@ getProfile(profileId: ProfileId): A2dpSourceProfile | HandsFreeAudioGatewayProfi
let
a2dpSrc
=
bluetooth
.
getProfile
(
PROFILE_A2DP_SOURCE
);
```
## bluetooth.getProfile<sup>9+</sup><a name="getProfile"></a>
getProfile(profileId: ProfileId): A2dpSourceProfile | HandsFreeAudioGatewayProfile | HidHostProfile
通过ProfileId,获取profile的对象实例,API9新增了HidHostProfile。
**系统能力**
:SystemCapability.Communication.Bluetooth.Core。
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| --------- | --------- | ---- | ------------------------------------- |
| profileId |
[
ProfileId
](
#ProfileId
)
| 是 | 表示profile的枚举值,例如:PROFILE_A2DP_SOURCE。 |
**返回值:**
| 类型 | 说明 |
| ------------------------------------------------------------ | ------------------------------------------------------------ |
|
[
A2dpSourceProfile
](
#A2dpSourceProfile
)
或
[
HandsFreeAudioGatewayProfile
](
#HandsFreeAudioGatewayProfile
)
或
[
HidHostProfile
](
#HidHostProfile
)
| 对应的profile的对象实例,当前支持A2dpSourceProfile/HandsFreeAudioGatewayProfile/HidHostProfile。 |
**示例:**
```
js
let
hidHost
=
bluetooth
.
getProfile
(
PROFILE_HID_HOST
);
```
## bluetooth.BLE
...
...
@@ -1215,11 +1232,16 @@ getConnectionDevices(): Array<string>
**返回值:**
| | |
| ------------------- | ------------- |
| 类型 | 说明 |
| ------------------- | ------------- |
| Array
<
string
>
| 返回已连接设备的地址列表。 |
**示例:**
```
js
let
a2dpSrc
=
bluetooth
.
getProfile
(
PROFILE_A2DP_SOURCE
)
let
retArray
=
a2dpSrc
.
getConnectionDevices
();
```
### getDeviceState<sup>8+</sup><a name="getDeviceState"></a>
...
...
@@ -1236,15 +1258,19 @@ getDeviceState(device: string): ProfileConnectionState
| 参数名 | 类型 | 必填 | 说明 |
| ------ | ------ | ---- | ------- |
| device | string | 是 | 远端设备地址。 |
|
**返回值:**
| | |
| ------------------------------------------------- | ----------------------- |
| 类型 | 说明 |
| ------------------------------------------------- | ----------------------- |
|
[
ProfileConnectionState
](
#profileconnectionstate
)
| 返回profile的连接状态。 |
**示例:**
```
js
let
a2dpSrc
=
bluetooth
.
getProfile
(
PROFILE_A2DP_SOURCE
)
let
ret
=
a2dpSrc
.
getDeviceState
(
'
XX:XX:XX:XX:XX:XX
'
);
```
## A2dpSourceProfile
...
...
@@ -1266,13 +1292,11 @@ connect(device: string): boolean
| 参数名 | 类型 | 必填 | 说明 |
| ------ | ------ | ---- | ------- |
| device | string | 是 | 远端设备地址。 |
|
**返回值:**
| | |
| ------- | ------------------- |
| 类型 | 说明 |
| ------- | ------------------- |
| boolean | 成功返回true,失败返回false。 |
**示例:**
...
...
@@ -1298,13 +1322,11 @@ disconnect(device: string): boolean
| 参数名 | 类型 | 必填 | 说明 |
| ------ | ------ | ---- | ------- |
| device | string | 是 | 远端设备地址。 |
|
**返回值:**
| | |
| ------- | ------------------- |
| 类型 | 说明 |
| ------- | ------------------- |
| boolean | 成功返回true,失败返回false。 |
**示例:**
...
...
@@ -1315,7 +1337,7 @@ let ret = a2dpSrc.disconnect('XX:XX:XX:XX:XX:XX');
```
###
A2dpSourceProfile.
on('connectionStateChange')<sup>8+</sup>
### on('connectionStateChange')<sup>8+</sup>
on(type: "connectionStateChange", callback: Callback
<
[StateChangeParam](#StateChangeParam)
>
): void
...
...
@@ -1340,11 +1362,12 @@ on(type: "connectionStateChange", callback: Callback<[StateChangeParam](#Stat
function
onReceiveEvent
(
data
)
{
console
.
info
(
'
a2dp state =
'
+
JSON
.
stringify
(
data
));
}
A2dpSourceProfile
.
on
(
'
connectionStateChange
'
,
onReceiveEvent
);
let
a2dpSrc
=
bluetooth
.
getProfile
(
PROFILE_A2DP_SOURCE
);
a2dpSrc
.
on
(
'
connectionStateChange
'
,
onReceiveEvent
);
```
###
A2dpSourceProfile.
off('connectionStateChange')<sup>8+</sup>
### off('connectionStateChange')<sup>8+</sup>
off(type: "connectionStateChange", callback: Callback
<
[StateChangeParam](#StateChangeParam)
>
): void
...
...
@@ -1357,7 +1380,7 @@ off(type: "connectionStateChange", callback: Callback<[StateChangeParam](#Sta
| 参数名 | 类型 | 必填 | 说明 |
| -------- | ---------------------------------------- | ---- | ---------------------------------------- |
| type | string | 是 | 填写"connectionStateChange"字符串,表示连接状态变化事件。 |
| callback | Callback
<
[StateChangeParam](#StateChangeParam)
>
|
是
| 表示回调函数的入参。 |
| callback | Callback
<
[StateChangeParam](#StateChangeParam)
>
|
否
| 表示回调函数的入参。 |
**返回值:**
...
...
@@ -1369,7 +1392,9 @@ off(type: "connectionStateChange", callback: Callback<[StateChangeParam](#Sta
function
onReceiveEvent
(
data
)
{
console
.
info
(
'
a2dp state =
'
+
JSON
.
stringify
(
data
));
}
A2dpSourceProfile
.
off
(
'
connectionStateChange
'
,
onReceiveEvent
);
let
a2dpSrc
=
bluetooth
.
getProfile
(
PROFILE_A2DP_SOURCE
);
a2dpSrc
.
on
(
'
connectionStateChange
'
,
onReceiveEvent
);
a2dpSrc
.
off
(
'
connectionStateChange
'
,
onReceiveEvent
);
```
...
...
@@ -1389,9 +1414,8 @@ getPlayingState(device: string): PlayingState
**返回值:**
| | |
| ----------------------------- | ---------- |
| 类型 | 说明 |
| ----------------------------- | ---------- |
|
[
PlayingState
](
#PlayingState
)
| 远端设备的播放状态。 |
**示例:**
...
...
@@ -1422,13 +1446,11 @@ connect(device: string): boolean
| 参数名 | 类型 | 必填 | 说明 |
| ------ | ------ | ---- | ------- |
| device | string | 是 | 远端设备地址。 |
|
**返回值:**
| | |
| ------- | ------------------- |
| 类型 | 说明 |
| ------- | ------------------- |
| boolean | 成功返回true,失败返回false。 |
**示例:**
...
...
@@ -1454,7 +1476,6 @@ disconnect(device: string): boolean
| 参数名 | 类型 | 必填 | 说明 |
| ------ | ------ | ---- | ------- |
| device | string | 是 | 远端设备地址。 |
|
**返回值:**
...
...
@@ -1470,7 +1491,7 @@ let ret = hfpAg.disconnect('XX:XX:XX:XX:XX:XX');
```
###
HandsFreeAudioGatewayProfile.
on('connectionStateChange')<sup>8+</sup>
### on('connectionStateChange')<sup>8+</sup>
on(type: "connectionStateChange", callback: Callback
<
[StateChangeParam](#StateChangeParam)
>
): void
...
...
@@ -1495,11 +1516,12 @@ on(type: "connectionStateChange", callback: Callback<[StateChangeParam](#Stat
function
onReceiveEvent
(
data
)
{
console
.
info
(
'
hfp state =
'
+
JSON
.
stringify
(
data
));
}
HandsFreeAudioGatewayProfile
.
on
(
'
connectionStateChange
'
,
onReceiveEvent
);
let
hfpAg
=
bluetooth
.
getProfile
(
PROFILE_HANDS_FREE_AUDIO_GATEWAY
);
hfpAg
.
on
(
'
connectionStateChange
'
,
onReceiveEvent
);
```
###
HandsFreeAudioGatewayProfile.
off('connectionStateChange')<sup>8+</sup>
### off('connectionStateChange')<sup>8+</sup>
off(type: "connectionStateChange", callback: Callback
<
[StateChangeParam](#StateChangeParam)
>
): void
...
...
@@ -1512,7 +1534,7 @@ off(type: "connectionStateChange", callback: Callback<[StateChangeParam](#Sta
| 参数名 | 类型 | 必填 | 说明 |
| -------- | ---------------------------------------- | ---- | ---------------------------------------- |
| type | string | 是 | 填写"connectionStateChange"字符串,表示连接状态变化事件。 |
| callback | Callback
<
[StateChangeParam](#StateChangeParam)
>
|
是
| 表示回调函数的入参。 |
| callback | Callback
<
[StateChangeParam](#StateChangeParam)
>
|
否
| 表示回调函数的入参。 |
**返回值:**
...
...
@@ -1524,7 +1546,139 @@ off(type: "connectionStateChange", callback: Callback<[StateChangeParam](#Sta
function
onReceiveEvent
(
data
)
{
console
.
info
(
'
hfp state =
'
+
JSON
.
stringify
(
data
));
}
HandsFreeAudioGatewayProfile
.
off
(
'
connectionStateChange
'
,
onReceiveEvent
);
let
hfpAg
=
bluetooth
.
getProfile
(
PROFILE_HANDS_FREE_AUDIO_GATEWAY
);
hfpAg
.
on
(
'
connectionStateChange
'
,
onReceiveEvent
);
hfpAg
.
off
(
'
connectionStateChange
'
,
onReceiveEvent
);
```
## HidHostProfile
使用HidHostProfile方法之前需要创建该类的实例进行操作,通过getProfile()方法构造此实例。
### connect<sup>9+</sup><a name="connect"></a>
connect(device: string): boolean
连接设备的HidHost服务。
**需要权限**
:ohos.permission.DISCOVER_BLUETOOTH
**系统能力**
:SystemCapability.Communication.Bluetooth.Core。
**系统API**
:该接口为系统接口,三方应用不支持调用。
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| ------ | ------ | ---- | ------- |
| device | string | 是 | 远端设备地址。 |
**返回值:**
| 类型 | 说明 |
| --------------------- | --------------------------------- |
| boolean | 成功返回true,失败返回false。 |
**示例:**
```
js
let
hidHostProfile
=
bluetooth
.
getProfile
(
PROFILE_HID_HOST
);
let
ret
=
hidHostProfile
.
connect
(
'
XX:XX:XX:XX:XX:XX
'
);
```
### disconnect<sup>9+</sup><a name="disconnect"></a>
disconnect(device: string): boolean
断开连接设备的HidHost服务。
**需要权限**
:ohos.permission.DISCOVER_BLUETOOTH
**系统能力**
:SystemCapability.Communication.Bluetooth.Core。
**系统API**
:该接口为系统接口,三方应用不支持调用。
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| ------ | ------ | ---- | ------- |
| device | string | 是 | 远端设备地址。 |
**返回值:**
| 类型 | 说明 |
| --------------------- | --------------------------------- |
| boolean | 成功返回true,失败返回false。 |
**示例:**
```
js
let
hidHostProfile
=
bluetooth
.
getProfile
(
PROFILE_HID_HOST
);
let
ret
=
hidHostProfile
.
disconnect
(
'
XX:XX:XX:XX:XX:XX
'
);
```
### on('connectionStateChange')<sup>9+</sup>
on(type: "connectionStateChange", callback: Callback
<
[StateChangeParam](#StateChangeParam)
>
): void
订阅HidHost连接状态变化事件。
**系统能力**
:SystemCapability.Communication.Bluetooth.Core。
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| -------- | ---------------------------------------- | ---- | ---------------------------------------- |
| type | string | 是 | 填写"connectionStateChange"字符串,表示连接状态变化事件。 |
| callback | Callback
<
[StateChangeParam](#StateChangeParam)
>
| 是 | 表示回调函数的入参。 |
**返回值:**
无
**示例:**
```
js
function
onReceiveEvent
(
data
)
{
console
.
info
(
'
hidHost state =
'
+
JSON
.
stringify
(
data
));
}
let
hidHost
=
bluetooth
.
getProfile
(
PROFILE_HID_HOST
);
hidHost
.
on
(
'
connectionStateChange
'
,
onReceiveEvent
);
```
### off('connectionStateChange')<sup>9+</sup>
off(type: "connectionStateChange", callback: Callback
<
[StateChangeParam](#StateChangeParam)
>
): void
取消订阅HidHost连接状态变化事件。
**系统能力**
:SystemCapability.Communication.Bluetooth.Core。
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| -------- | ----------------------------------------------------- | ---- | --------------------------------------------------------- |
| type | string | 是 | 填写"connectionStateChange"字符串,表示连接状态变化事件。 |
| callback | Callback
<
[StateChangeParam](#StateChangeParam)
>
| 否 | 表示回调函数的入参。 |
**返回值:**
无
**示例:**
```
js
function
onReceiveEvent
(
data
)
{
console
.
info
(
'
hidHost state =
'
+
JSON
.
stringify
(
data
));
}
let
hidHost
=
bluetooth
.
getProfile
(
PROFILE_HID_HOST
);
hidHost
.
on
(
'
connectionStateChange
'
,
onReceiveEvent
);
hidHost
.
off
(
'
connectionStateChange
'
,
onReceiveEvent
);
```
...
...
@@ -3436,11 +3590,12 @@ let rssi = gattClient.getRssiValue().then((data) => {
## ProfileId<sup>8+</sup><a name="ProfileId"></a>
枚举,蓝牙profile id
。
蓝牙profile枚举,API9新增PROFILE_HID_HOST
。
**系统能力**
:SystemCapability.Communication.Bluetooth.Core。
| 名称 | 默认值 | 说明 |
| -------------------------------- | ------ | --------------- |
| PROFILE_A2DP_SOURCE | 0x0001 | 表示A2DP profile。 |
| PROFILE_HANDS_FREE_AUDIO_GATEWAY | 0x0004 | 表示HFP profile。 |
\ No newline at end of file
| PROFILE_HANDS_FREE_AUDIO_GATEWAY | 0x0004 | 表示HFP profile。 |
| PROFILE_HID_HOST
<sup>
9+
</sup>
| 0x0006 | 表示HID profile。 |
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录