From 418178e967761a4f2b4b997f6419e912df85d2b1 Mon Sep 17 00:00:00 2001 From: tangjia Date: Mon, 5 Dec 2022 15:56:31 +0800 Subject: [PATCH] fix the bleutooth docs Signed-off-by: tangjia --- .../reference/apis/js-apis-bluetooth.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/zh-cn/application-dev/reference/apis/js-apis-bluetooth.md b/zh-cn/application-dev/reference/apis/js-apis-bluetooth.md index 87e175c8d3..45f13ff464 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-bluetooth.md +++ b/zh-cn/application-dev/reference/apis/js-apis-bluetooth.md @@ -3635,7 +3635,7 @@ let rssi = gattClient.getRssiValue().then((data) => { | 名称 | 类型 | 可读 | 可写 | 说明 | | ---------------- | ------------------- | ---- | ---- | ------------------ | -| manufactureId | Array<string> | 是 | 是 | 表示制造商的ID,由蓝牙SIG分配。 | +| manufactureId | number | 是 | 是 | 表示制造商的ID,由蓝牙SIG分配。 | | manufactureValue | ArrayBuffer | 是 | 是 | 表示制造商发送的制造商数据。 | @@ -3838,7 +3838,7 @@ let rssi = gattClient.getRssiValue().then((data) => { | 名称 | 值 | 说明 | | -------------------------------- | ------ | --------------- | -| PROFILE_A2DP_SOURCE | 0x0001 | 表示A2DP profile。 | -| PROFILE_HANDS_FREE_AUDIO_GATEWAY | 0x0004 | 表示HFP profile。 | -| PROFILE_HID_HOST9+ | 0x0006 | 表示HID profile。 | -| PROFILE_PAN_NETWORK9+ | 0x0007 | 表示PAN profile。 | \ No newline at end of file +| PROFILE_A2DP_SOURCE | 1 | 表示A2DP profile。 | +| PROFILE_HANDS_FREE_AUDIO_GATEWAY | 4 | 表示HFP profile。 | +| PROFILE_HID_HOST9+ | 6 | 表示HID profile。 | +| PROFILE_PAN_NETWORK9+ | 7 | 表示PAN profile。 | \ No newline at end of file -- GitLab