Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
562258f2
D
Docs
项目概览
OpenHarmony
/
Docs
接近 2 年 前同步成功
通知
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看板
未验证
提交
562258f2
编写于
7月 28, 2023
作者:
O
openharmony_ci
提交者:
Gitee
7月 28, 2023
浏览文件
操作
浏览文件
下载
差异文件
!21516 bluetooth添加changelog
Merge pull request !21516 from lverpeng/master
上级
23049e82
96ad90e5
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
223 addition
and
0 deletion
+223
-0
zh-cn/release-notes/changelogs/OpenHarmony_4.0.9.2/changelogs-bluetooth.md
...es/changelogs/OpenHarmony_4.0.9.2/changelogs-bluetooth.md
+223
-0
未找到文件。
zh-cn/release-notes/changelogs/OpenHarmony_4.0.9.2/changelogs-bluetooth.md
0 → 100644
浏览文件 @
562258f2
# bluetooth子系统ChangeLog
## cl.bluetooth.1 蓝牙模块JS接口拆分,支持按profile加载接口能力。
1.
ArkTS接口,拆分在对应的.d.ts中。
2.
权限变更,接口权限统一变更为ohos.permission.ACCESS_BLUETOOTH,
[
部分接口
](
#需要双权限校验的接口
)
额外需要ohos.permission.MANAGE_BLUETOOTH权限。
| 模块 | 接口文档 |
| -------- | ---------------------------- |
|@ohos.bluetooth.a2dp |
[
js-apis-bluetooth-a2dp.md
](
../../../application-dev/reference/apis/js-apis-bluetooth-a2dp.md
)
|
|@ohos.bluetooth.access |
[
js-apis-bluetooth-access.md
](
../../../application-dev/reference/apis/js-apis-bluetooth-access.md
)
|
|@ohos.bluetooth.baseProfile |
[
js-apis-bluetooth-baseProfile.md
](
../../../application-dev/reference/apis/js-apis-bluetooth-baseProfile.md
)
|
|@ohos.bluetooth.ble |
[
js-apis-bluetooth-ble.md
](
../../../application-dev/reference/apis/js-apis-bluetooth-ble.md
)
|
|@ohos.bluetooth.connection |
[
js-apis-bluetooth-connection.md
](
../../../application-dev/reference/apis/js-apis-bluetooth-connection.md
)
|
|@ohos.bluetooth.constant |
[
js-apis-bluetooth-constant.md
](
../../../application-dev/reference/apis/js-apis-bluetooth-constant.md
)
|
|@ohos.bluetooth.hfp |
[
js-apis-bluetooth-hfp.md
](
../../../application-dev/reference/apis/js-apis-bluetooth-hfp.md
)
|
|@ohos.bluetooth.hid |
[
js-apis-bluetooth-hid.md
](
../../../application-dev/reference/apis/js-apis-bluetooth-hid.md
)
|
|@ohos.bluetooth.pan |
[
js-apis-bluetooth-pan.md
](
../../../application-dev/reference/apis/js-apis-bluetooth-pan.md
)
|
|@ohos.bluetooth.socket |
[
js-apis-bluetooth-socket.md
](
../../../application-dev/reference/apis/js-apis-bluetooth-socket.md
)
|
### 需要双权限校验的接口
| 模块 | 接口声明 |
|------|---------|
|@ohos.bluetooth.baseProfile|
[
setConnectionStrategy(deviceId: string, strategy: ConnectionStrategy, callback: AsyncCallback<void>): void
](
../../../application-dev/reference/apis/js-apis-bluetooth-baseProfile.md#baseprofilesetconnectionstrategy
)
|
|@ohos.bluetooth.baseProfile|
[
setConnectionStrategy(deviceId: string, strategy: ConnectionStrategy): Promise<void>
](
../../../application-dev/reference/apis/js-apis-bluetooth-baseProfile.md#baseprofilesetconnectionstrategy-1
)
|
|@ohos.bluetooth.baseProfile|
[
getConnectionStrategy(deviceId: string, callback: AsyncCallback<ConnectionStrategy>): void
](
../../../application-dev/reference/apis/js-apis-bluetooth-baseProfile.md#baseprofilegetconnectionstrategy
)
|
|@ohos.bluetooth.baseProfile|
[
getConnectionStrategy(deviceId: string): Promise<ConnectionStrategy>
](
../../../application-dev/reference/apis/js-apis-bluetooth-baseProfile.md#baseprofilegetconnectionstrategy-1
)
|
|@ohos.bluetooth.connection|
[
pairCredibleDevice(deviceId: string, transport: BluetoothTransport, callback: AsyncCallback<void>): void
](
../../../application-dev/reference/apis/js-apis-bluetooth-connection.md#connectionpaircredibledevice
)
|
|@ohos.bluetooth.connection|
[
pairCredibleDevice(deviceId: string, transport: BluetoothTransport): Promise<void>
](
../../../application-dev/reference/apis/js-apis-bluetooth-connection.md#connectionpaircredibledevice-1
)
|
|@ohos.bluetooth.connection|
[
setDevicePairingConfirmation(deviceId: string, accept: boolean): void
](
../../../application-dev/reference/apis/js-apis-bluetooth-connection.md#connectionsetdevicepairingconfirmation
)
|
|connect(hid profile) |
[
connect(deviceId: string): void
](
../../../application-dev/reference/apis/js-apis-bluetooth-hid.md#connect
)
|
|disconnect(hid profile) |
[
disconnect(deviceId: string): void
](
../../../application-dev/reference/apis/js-apis-bluetooth-hid.md#disconnect
)
|
|setTethering |
[
setTethering(enable: boolean): void
](
../../../application-dev/reference/apis/js-apis-bluetooth-pan.md#settethering
)
|
**变更影响**
1.
TS拆分后,接口调用import文件发生改变。
2.
权限变更后,只需关注ohos.permission.ACCESS_BLUETOOTH和ohos.permission.MANAGE_BLUETOOTH权限。
**关键接口/组件变更**
| 拆分前 | 拆分后 |
| -------- | ---------------------------- |
|bluetoothManager.enableBluetooth |
[
access.enableBluetooth
](
../../../application-dev/reference/apis/js-apis-bluetooth-access.md#accessenablebluetooth
)
|
|bluetoothManager.disableBluetooth |
[
access.disableBluetooth
](
../../../application-dev/reference/apis/js-apis-bluetooth-access.md#accessdisablebluetooth
)
|
|bluetoothManager.getLocalName |
[
connection.getLocalName
](
../../../application-dev/reference/apis/js-apis-bluetooth-connection.md#connectiongetlocalname
)
|
|bluetoothManager.getState |
[
access.getState
](
../../../application-dev/reference/apis/js-apis-bluetooth-access.md#accessgetstate
)
|
|bluetoothManager.getBtConnectionState |
[
connection.getProfileConnectionState
](
../../../application-dev/reference/apis/js-apis-bluetooth-connection.md#connectiongetprofileconnectionstate
)
|
|bluetoothManager.setLocalName |
[
connection.setLocalName
](
../../../application-dev/reference/apis/js-apis-bluetooth-connection.md#connectionsetlocalname
)
|
|bluetoothManager.pairDevice |
[
connection.pairDevice
](
../../../application-dev/reference/apis/js-apis-bluetooth-connection.md#connectionpairdevice
)
|
|bluetoothManager.getProfileConnectionState |
[
connection.getProfileConnectionState
](
../../../application-dev/reference/apis/js-apis-bluetooth-connection.md#connectiongetprofileconnectionstate
)
|
|bluetoothManager.cancelPairedDevice |
[
connection.cancelPairedDevice
](
../../../application-dev/reference/apis/js-apis-bluetooth-connection.md#connectioncancelpaireddevice
)
|
|bluetoothManager.getRemoteDeviceName |
[
connection.getRemoteDeviceName
](
../../../application-dev/reference/apis/js-apis-bluetooth-connection.md#connectiongetremotedevicename
)
|
|bluetoothManager.getRemoteDeviceClass |
[
connection.getRemoteDeviceClass
](
../../../application-dev/reference/apis/js-apis-bluetooth-connection.md#connectiongetremotedeviceclass
)
|
|bluetoothManager.getPairedDevices |
[
connection.getPairedDevices
](
../../../application-dev/reference/apis/js-apis-bluetooth-connection.md#connectiongetpaireddevices
)
|
|bluetoothManager.setBluetoothScanMode |
[
connection.setBluetoothScanMode
](
../../../application-dev/reference/apis/js-apis-bluetooth-connection.md#connectionsetbluetoothscanmode
)
|
|bluetoothManager.getBluetoothScanMode |
[
connection.getBluetoothScanMode
](
../../../application-dev/reference/apis/js-apis-bluetooth-connection.md#connectiongetbluetoothscanmode
)
|
|bluetoothManager.startBluetoothDiscovery |
[
connection.startBluetoothDiscovery
](
../../../application-dev/reference/apis/js-apis-bluetooth-connection.md#connectionstartbluetoothdiscovery
)
|
|bluetoothManager.stopBluetoothDiscovery |
[
connection.stopBluetoothDiscovery
](
../../../application-dev/reference/apis/js-apis-bluetooth-connection.md#connectionstopbluetoothdiscovery
)
|
|bluetoothManager.setDevicePairingConfirmation |
[
connection.setDevicePairingConfirmation
](
../../../application-dev/reference/apis/js-apis-bluetooth-connection.md#connectionsetdevicepairingconfirmation
)
|
|bluetoothManager.on('bluetoothDeviceFind') |
[
connection.on('bluetoothDeviceFind')
](
../../../application-dev/reference/apis/js-apis-bluetooth-connection.md#connectiononbluetoothdevicefind
)
|
|bluetoothManager.off('bluetoothDeviceFind') |
[
connection.off('bluetoothDeviceFind')
](
../../../application-dev/reference/apis/js-apis-bluetooth-connection.md#connectionoffbluetoothdevicefind
)
|
|bluetoothManager.on('pinRequired') |
[
connection.on('pinRequired')
](
../../../application-dev/reference/apis/js-apis-bluetooth-connection.md#connectiononpinrequired
)
|
|bluetoothManager.off('pinRequired') |
[
connection.off('pinRequired')
](
../../../application-dev/reference/apis/js-apis-bluetooth-connection.md#connectionoffpinrequired
)
|
|bluetoothManager.on('bondStateChange') |
[
connection.on('bondStateChange')
](
../../../application-dev/reference/apis/js-apis-bluetooth-connection.md#connectiononbondstatechange
)
|
|bluetoothManager.off('bondStateChange') |
[
connection.off('bondStateChange')
](
../../../application-dev/reference/apis/js-apis-bluetooth-connection.md#connectionoffbondstatechange
)
|
|bluetoothManager.on('stateChange') |
[
access.on('stateChange')
](
../../../application-dev/reference/apis/js-apis-bluetooth-access.md#accessonstatechange
)
|
|bluetoothManager.off('stateChange') |
[
access.off('stateChange')
](
../../../application-dev/reference/apis/js-apis-bluetooth-access.md#accessoffstatechange
)
|
|bluetoothManager.sppListen |
[
socket.sppListen
](
../../../application-dev/reference/apis/js-apis-bluetooth-socket.md#socketspplisten
)
|
|bluetoothManager.sppAccept |
[
socket.sppAccept
](
../../../application-dev/reference/apis/js-apis-bluetooth-socket.md#socketsppaccept
)
|
|bluetoothManager.sppConnect |
[
socket.sppConnect
](
../../../application-dev/reference/apis/js-apis-bluetooth-connection.md#connectionoffbluetoothdevicefind
)
|
|bluetoothManager.sppCloseServerSocket |
[
socket.sppCloseServerSocket
](
../../../application-dev/reference/apis/js-apis-bluetooth-socket.md#socketsppcloseserversocket
)
|
|bluetoothManager.sppCloseClientSocket |
[
socket.sppCloseClientSocket
](
../../../application-dev/reference/apis/js-apis-bluetooth-socket.md#socketsppcloseclientsocket
)
|
|bluetoothManager.sppWrite |
[
socket.sppWrite
](
../../../application-dev/reference/apis/js-apis-bluetooth-socket.md#socketsppwrite
)
|
|bluetoothManager.on('sppRead') |
[
socket.on('sppRead')
](
../../../application-dev/reference/apis/js-apis-bluetooth-socket.md#socketonsppread
)
|
|bluetoothManager.off('sppRead') |
[
socket.off('sppRead')
](
../../../application-dev/reference/apis/js-apis-bluetooth-socket.md#socketoffsppread
)
|
|bluetoothManager.getProfileInstance | 已废弃 |
|createGattServer |
[
ble.createGattServer
](
../../../application-dev/reference/apis/js-apis-bluetooth-ble.md#blecreategattserver
)
|
|createGattClientDevice |
[
ble.createGattClientDevice
](
../../../application-dev/reference/apis/js-apis-bluetooth-ble.md#blegetconnectedbledevices
)
|
|getConnectedBLEDevices |
[
ble.getConnectedBLEDevices
](
../../../application-dev/reference/apis/js-apis-bluetooth-ble.md#blegetconnectedbledevices
)
|
|startBLEScan |
[
ble.startBLEScan
](
../../../application-dev/reference/apis/js-apis-bluetooth-ble.md#blestartblescan
)
|
|stopBLEScan |
[
ble.stopBLEScan
](
../../../application-dev/reference/apis/js-apis-bluetooth-ble.md#blestopblescan
)
|
|on('BLEDeviceFind') |
[
ble.on('BLEDeviceFind')
](
../../../application-dev/reference/apis/js-apis-bluetooth-ble.md#bleonbledevicefind
)
|
|off('BLEDeviceFind') |
[
ble.off('BLEDeviceFind')
](
../../../application-dev/reference/apis/js-apis-bluetooth-ble.md#bleoffbledevicefind
)
|
|getConnectionDevices |
[
baseProfile.getConnectedDevices
](
../../../application-dev/reference/apis/js-apis-bluetooth-baseProfile.md#baseprofilegetconnecteddevices
)
|
|getDeviceState |
[
baseProfile.getConnectionState
](
../../../application-dev/reference/apis/js-apis-bluetooth-baseProfile.md#baseprofilegetconnectionstate
)
|
|A2dpSourceProfile |
[
A2dpSourceProfile
](
../../../application-dev/reference/apis/js-apis-bluetooth-a2dp.md#a2dpsourceprofile
)
|
|connect(a2dp profile) |
[
connect
](
../../../application-dev/reference/apis/js-apis-bluetooth-a2dp.md#connect
)
|
|disconnect(a2dp profile) |
[
disconnect
](
../../../application-dev/reference/apis/js-apis-bluetooth-a2dp.md#disconnect
)
|
|on('connectionStateChange') |
[
baseProfile.on('connectionStateChange')
](
../../../application-dev/reference/apis/js-apis-bluetooth-baseProfile.md#baseprofileonconnectionstatechange
)
|
|off('connectionStateChange') |
[
baseProfile.off('connectionStateChange')
](
../../../application-dev/reference/apis/js-apis-bluetooth-baseProfile.md#baseprofileoffconnectionstatechange
)
|
|getPlayingState |
[
getPlayingState
](
../../../application-dev/reference/apis/js-apis-bluetooth-a2dp.md#getplayingstate
)
|
|HandsFreeAudioGatewayProfile |
[
HandsFreeAudioGatewayProfile
](
../../../application-dev/reference/apis/js-apis-bluetooth-hfp.md#handsfreeaudiogatewayprofile
)
|
|connect(hfp profile) |
[
connect
](
../../../application-dev/reference/apis/js-apis-bluetooth-hfp.md#connect
)
|
|disconnect(hfp profile) |
[
disconnect
](
../../../application-dev/reference/apis/js-apis-bluetooth-hfp.md#disconnect
)
|
|on('connectionStateChange')(hfp profile) |
[
baseProfile.on('connectionStateChange')
](
../../../application-dev/reference/apis/js-apis-bluetooth-baseProfile.md#baseprofileonconnectionstatechange
)
|
|off('connectionStateChange')(hfp profile) |
[
baseProfile.off('connectionStateChange')
](
../../../application-dev/reference/apis/js-apis-bluetooth-baseProfile.md#baseprofileoffconnectionstatechange
)
|
|connect(hid profile) |
[
connect
](
../../../application-dev/reference/apis/js-apis-bluetooth-hid.md#connect
)
|
|disconnect(hid profile) |
[
disconnect
](
../../../application-dev/reference/apis/js-apis-bluetooth-hid.md#disconnect
)
|
|on('connectionStateChange')(hid profile) |
[
baseProfile.on('connectionStateChange')
](
../../../application-dev/reference/apis/js-apis-bluetooth-baseProfile.md#baseprofileonconnectionstatechange
)
|
|off('connectionStateChange')(hid profile) |
[
baseProfile.off('connectionStateChange')
](
../../../application-dev/reference/apis/js-apis-bluetooth-baseProfile.md#baseprofileoffconnectionstatechange
)
|
|disconnect(pan profile) |
[
disconnect
](
../../../application-dev/reference/apis/js-apis-bluetooth-pan.md#disconnect
)
|
|on('connectionStateChange')(pan profile) |
[
baseProfile.on('connectionStateChange')
](
../../../application-dev/reference/apis/js-apis-bluetooth-baseProfile.md#baseprofileonconnectionstatechange
)
|
|off('connectionStateChange')(pan profile) |
[
baseProfile.off('connectionStateChange')
](
../../../application-dev/reference/apis/js-apis-bluetooth-baseProfile.md#baseprofileoffconnectionstatechange
)
|
|setTethering |
[
setTethering
](
../../../application-dev/reference/apis/js-apis-bluetooth-pan.md#settethering
)
|
|isTetheringOn |
[
isTetheringOn
](
../../../application-dev/reference/apis/js-apis-bluetooth-pan.md#istetheringon
)
|
|startAdvertising |
[
ble.startAdvertising
](
../../../application-dev/reference/apis/js-apis-bluetooth-ble.md#blestartadvertising
)
|
|stopAdvertising |
[
ble.stopAdvertising
](
../../../application-dev/reference/apis/js-apis-bluetooth-ble.md#blestopadvertising
)
|
|addService |
[
addService
](
../../../application-dev/reference/apis/js-apis-bluetooth-ble.md#addservice
)
|
|removeService |
[
removeService
](
../../../application-dev/reference/apis/js-apis-bluetooth-ble.md#removeservice
)
|
|close |
[
close
](
../../../application-dev/reference/apis/js-apis-bluetooth-ble.md#close
)
|
|notifyCharacteristicChanged |
[
notifyCharacteristicChanged
](
../../../application-dev/reference/apis/js-apis-bluetooth-ble.md#notifycharacteristicchanged
)
|
|sendResponse |
[
sendResponse
](
../../../application-dev/reference/apis/js-apis-bluetooth-ble.md#sendresponse
)
|
|on('characteristicRead') |
[
on('characteristicRead')
](
../../../application-dev/reference/apis/js-apis-bluetooth-ble.md#oncharacteristicread
)
|
|off('characteristicRead') |
[
off('characteristicRead')
](
../../../application-dev/reference/apis/js-apis-bluetooth-ble.md#offcharacteristicread
)
|
|on('characteristicWrite') |
[
on('characteristicWrite')
](
../../../application-dev/reference/apis/js-apis-bluetooth-ble.md#oncharacteristicwrite
)
|
|off('characteristicWrite') |
[
off('characteristicWrite')
](
../../../application-dev/reference/apis/js-apis-bluetooth-ble.md#offcharacteristicwrite
)
|
|on('descriptorRead') |
[
on('descriptorRead')
](
../../../application-dev/reference/apis/js-apis-bluetooth-ble.md#ondescriptorread
)
|
|off('descriptorRead') |
[
off('descriptorRead')
](
../../../application-dev/reference/apis/js-apis-bluetooth-ble.md#offdescriptorread
)
|
|on('descriptorWrite') |
[
on('descriptorWrite')
](
../../../application-dev/reference/apis/js-apis-bluetooth-ble.md#ondescriptorwrite
)
|
|off('descriptorWrite') |
[
off('descriptorWrite')
](
../../../application-dev/reference/apis/js-apis-bluetooth-ble.md#offdescriptorwrite
)
|
|on('connectStateChange') |
[
on('connectionStateChange')
](
../../../application-dev/reference/apis/js-apis-bluetooth-ble.md#onconnectionstatechange
)
|
|off('connectStateChange') |
[
off('connectionStateChange')
](
../../../application-dev/reference/apis/js-apis-bluetooth-ble.md#offconnectionstatechange
)
|
|connect |
[
connect
](
../../../application-dev/reference/apis/js-apis-bluetooth-ble.md#connect
)
|
|disconnect |
[
disconnect
](
../../../application-dev/reference/apis/js-apis-bluetooth-ble.md#disconnect
)
|
|close |
[
close
](
../../../application-dev/reference/apis/js-apis-bluetooth-ble.md#close
)
|
|getServices(callback) |
[
getServices
](
../../../application-dev/reference/apis/js-apis-bluetooth-ble.md#getservices
)
|
|getServices(promise) |
[
getServices
](
../../../application-dev/reference/apis/js-apis-bluetooth-ble.md#getservices-1
)
|
|readCharacteristicValue(callback) |
[
readCharacteristicValue
](
../../../application-dev/reference/apis/js-apis-bluetooth-ble.md#readcharacteristicvalue
)
|
|readCharacteristicValue(promise) |
[
readCharacteristicValue
](
../../../application-dev/reference/apis/js-apis-bluetooth-ble.md#readcharacteristicvalue-1
)
|
|readDescriptorValue(callback) |
[
readDescriptorValue
](
../../../application-dev/reference/apis/js-apis-bluetooth-ble.md#readdescriptorvalue
)
|
|readDescriptorValue(promise) |
[
readDescriptorValue
](
../../../application-dev/reference/apis/js-apis-bluetooth-ble.md#readdescriptorvalue-1
)
|
|writeCharacteristicValue(callback) |
[
writeCharacteristicValue
](
../../../application-dev/reference/apis/js-apis-bluetooth-ble.md#writecharacteristicvalue
)
|
|writeDescriptorValue(promise) |
[
writeCharacteristicValue
](
../../../application-dev/reference/apis/js-apis-bluetooth-ble.md#writecharacteristicvalue-1
)
|
|setBLEMtuSize |
[
setBLEMtuSize
](
../../../application-dev/reference/apis/js-apis-bluetooth-ble.md#setblemtusize
)
|
|setNotifyCharacteristicChanged |
[
setCharacteristicChangeNotification
](
../../../application-dev/reference/apis/js-apis-bluetooth-ble.md#setcharacteristicchangenotification
)
|
|on('BLECharacteristicChange') |
[
on('BLECharacteristicChange')
](
../../../application-dev/reference/apis/js-apis-bluetooth-ble.md#onblecharacteristicchange
)
|
|off('BLECharacteristicChange') |
[
off('BLECharacteristicChange')
](
../../../application-dev/reference/apis/js-apis-bluetooth-ble.md#offblecharacteristicchange
)
|
|on('BLEConnectionStateChange') |
[
on('BLEConnectionStateChange')
](
../../../application-dev/reference/apis/js-apis-bluetooth-ble.md#onbleconnectionstatechange
)
|
|off('BLEConnectionStateChange') |
[
off('BLEConnectionStateChange')
](
../../../application-dev/reference/apis/js-apis-bluetooth-ble.md#offbleconnectionstatechange
)
|
|getDeviceName(callback) |
[
getDeviceName
](
../../../application-dev/reference/apis/js-apis-bluetooth-ble.md#getdevicename
)
|
|getDeviceName(promise) |
[
getDeviceName
](
../../../application-dev/reference/apis/js-apis-bluetooth-ble.md#getdevicename-1
)
|
|getRssiValue(callback) |
[
getRssiValue
](
../../../application-dev/reference/apis/js-apis-bluetooth-ble.md#getrssivalue
)
|
|getRssiValue(promise) |
[
getRssiValue
](
../../../application-dev/reference/apis/js-apis-bluetooth-ble.md#getrssivalue-1
)
|
|ScanMode |
[
ScanMode
](
../../../application-dev/reference/apis/js-apis-bluetooth-connection.md#scanmode
)
|
|BondState |
[
BondState
](
../../../application-dev/reference/apis/js-apis-bluetooth-connection.md#bondstate
)
|
|SppOption |
[
SppOptions
](
../../../application-dev/reference/apis/js-apis-bluetooth-socket.md#sppoptions
)
|
|SppType |
[
SppType
](
../../../application-dev/reference/apis/js-apis-bluetooth-socket.md#spptype
)
|
|GattService |
[
GattService
](
../../../application-dev/reference/apis/js-apis-bluetooth-ble.md#gattservice
)
|
|BLECharacteristic |
[
BLECharacteristic
](
../../../application-dev/reference/apis/js-apis-bluetooth-ble.md#blecharacteristic
)
|
|BLEDescriptor |
[
BLEDescriptor
](
../../../application-dev/reference/apis/js-apis-bluetooth-ble.md#bledescriptor
)
|
|NotifyCharacteristic |
[
NotifyCharacteristic
](
../../../application-dev/reference/apis/js-apis-bluetooth-ble.md#notifycharacteristic
)
|
|CharacteristicReadRequest |
[
CharacteristicReadRequest
](
../../../application-dev/reference/apis/js-apis-bluetooth-ble.md#characteristicreadrequest
)
|
|CharacteristicWriteRequest |
[
CharacteristicWriteRequest
](
../../../application-dev/reference/apis/js-apis-bluetooth-ble.md#characteristicwriterequest
)
|
|DescriptorReadRequest |
[
DescriptorReadRequest
](
../../../application-dev/reference/apis/js-apis-bluetooth-ble.md#descriptorreadrequest
)
|
|DescriptorWriteRequest |
[
DescriptorWriteRequest
](
../../../application-dev/reference/apis/js-apis-bluetooth-ble.md#descriptorwriterequest
)
|
|ServerResponse |
[
ServerResponse
](
../../../application-dev/reference/apis/js-apis-bluetooth-ble.md#serverresponse
)
|
|BLEConnectChangedState |
[
BLEConnectionChangeState
](
../../../application-dev/reference/apis/js-apis-bluetooth-ble.md#bleconnectionchangestate
)
|
|ProfileConnectionState |
[
ProfileConnectionState
](
../../../application-dev/reference/apis/js-apis-bluetooth-constant.md#profileconnectionstate
)
|
|ScanFilter |
[
ScanFilter
](
../../../application-dev/reference/apis/js-apis-bluetooth-ble.md#scanfilter
)
|
|ScanOptions |
[
ScanOptions
](
../../../application-dev/reference/apis/js-apis-bluetooth-ble.md#scanoptions
)
|
|ScanDuty |
[
ScanDuty
](
../../../application-dev/reference/apis/js-apis-bluetooth-ble.md#scanduty
)
|
|MatchMode |
[
MatchMode
](
../../../application-dev/reference/apis/js-apis-bluetooth-ble.md#matchmode
)
|
|ScanResult |
[
ScanResult
](
../../../application-dev/reference/apis/js-apis-bluetooth-ble.md#scanresult
)
|
|BluetoothState |
[
BluetoothState
](
../../../application-dev/reference/apis/js-apis-bluetooth-access.md#bluetoothstate
)
|
|AdvertiseSetting |
[
AdvertiseSetting
](
../../../application-dev/reference/apis/js-apis-bluetooth-ble.md#advertisesetting
)
|
|AdvertiseData |
[
AdvertiseData
](
../../../application-dev/reference/apis/js-apis-bluetooth-ble.md#advertisedata
)
|
|ManufactureData |
[
ManufactureData
](
../../../application-dev/reference/apis/js-apis-bluetooth-ble.md#manufacturedata
)
|
|ServiceData |
[
ServiceData
](
../../../application-dev/reference/apis/js-apis-bluetooth-ble.md#servicedata
)
|
|PinRequiredParam |
[
PinRequiredParam
](
../../../application-dev/reference/apis/js-apis-bluetooth-connection.md#pinrequiredparam
)
|
|BondStateParam |
[
BondStateParam
](
../../../application-dev/reference/apis/js-apis-bluetooth-connection.md#bondstateparam
)
|
|StateChangeParam |
[
StateChangeParam
](
../../../application-dev/reference/apis/js-apis-bluetooth-baseProfile.md#statechangeparam
)
|
|DeviceClass |
[
DeviceClass
](
../../../application-dev/reference/apis/js-apis-bluetooth-connection.md#deviceclass
)
|
|MajorClass |
[
MajorClass
](
../../../application-dev/reference/apis/js-apis-bluetooth-constant.md#majorclass
)
|
|MajorMinorClass |
[
MajorMinorClass
](
../../../application-dev/reference/apis/js-apis-bluetooth-constant.md#majorminorclass
)
|
|PlayingState |
[
PlayingState
](
../../../application-dev/reference/apis/js-apis-bluetooth-a2dp.md#playingstate
)
|
|ProfileId |
[
ProfileId
](
../../../application-dev/reference/apis/js-apis-bluetooth-constant.md#profileid
)
|
### 新增接口声明
| 模块名 |新增声明 |
| ------------- |-------------------------------------------------------- |
|@ohos.bluetooth.connection|
[
pairCredibleDevice(deviceId: string, transport: BluetoothTransport, callback: AsyncCallback<void>): void
](
../../../application-dev/reference/apis/js-apis-bluetooth-connection.md#connectionpaircredibledevice
)
|
|@ohos.bluetooth.connection|
[
pairCredibleDevice(deviceId: string, transport: BluetoothTransport): Promise<void>
](
../../../application-dev/reference/apis/js-apis-bluetooth-connection.md#connectionpaircredibledevice-1
)
|
|@ohos.bluetooth.connection|
[
getRemoteProfileUuids(deviceId: string, callback: AsyncCallback<Array<ProfileUuids>>): void
](
../../../application-dev/reference/apis/js-apis-bluetooth-connection.md#connectiongetremoteprofileuuids
)
|
|@ohos.bluetooth.connection|
[
getRemoteProfileUuids(deviceId: string): Promise<Array<ProfileUuids>>
](
../../../application-dev/reference/apis/js-apis-bluetooth-connection.md#connectiongetremoteprofileuuids-1
)
|
|@ohos.bluetooth.connection|
[
getLocalProfileUuids(callback: AsyncCallback<Array<ProfileUuids>>): void
](
../../../application-dev/reference/apis/js-apis-bluetooth-connection.md#connectiongetlocalprofileuuids
)
|
|@ohos.bluetooth.connection|
[
getLocalProfileUuids(): Promise<Array<ProfileUuids>>
](
../../../application-dev/reference/apis/js-apis-bluetooth-connection.md#connectiongetlocalprofileuuids-1
)
|
|@ohos.bluetooth.connection|
[
setDevicePinCode(deviceId: string, code: string, callback: AsyncCallback<void>): void
](
../../../application-dev/reference/apis/js-apis-bluetooth-connection.md#connectionsetdevicepincode
)
|
|@ohos.bluetooth.connection|
[
setDevicePinCode(deviceId: string, code: string): Promise<void>
](
../../../application-dev/reference/apis/js-apis-bluetooth-connection.md#connectionsetdevicepincode-1
)
|
|@ohos.bluetooth.baseProfile|
[
setConnectionStrategy(deviceId: string, strategy: ConnectionStrategy, callback: AsyncCallback<void>): void
](
../../../application-dev/reference/apis/js-apis-bluetooth-baseProfile.md#baseprofilesetconnectionstrategy
)
|
|@ohos.bluetooth.baseProfile|
[
setConnectionStrategy(deviceId: string, strategy: ConnectionStrategy): Promise<void>
](
../../../application-dev/reference/apis/js-apis-bluetooth-baseProfile.md#baseprofilesetconnectionstrategy-1
)
|
|@ohos.bluetooth.baseProfile|
[
getConnectionStrategy(deviceId: string, callback: AsyncCallback<ConnectionStrategy>): void
](
../../../application-dev/reference/apis/js-apis-bluetooth-baseProfile.md#baseprofilegetconnectionstrategy
)
|
|@ohos.bluetooth.baseProfile|
[
getConnectionStrategy(deviceId: string): Promise<ConnectionStrategy>
](
../../../application-dev/reference/apis/js-apis-bluetooth-baseProfile.md#baseprofilegetconnectionstrategy-1
)
|
|@ohos.bluetooth.baseprofile|
[
ConnectionStrategy
](
../../../application-dev/reference/apis/js-apis-bluetooth-baseProfile.md#connectionstrategy
)
|
|@ohos.bluetooth.ble|
[
properties
](
../../../application-dev/reference/apis/js-apis-bluetooth-ble.md#blecharacteristic
)
|
|@ohos.bluetooth.ble|
[
deviceName
](
../../../application-dev/reference/apis/js-apis-bluetooth-ble.md#scanresult
)
|
|@ohos.bluetooth.ble|
[
includeDeviceName
](
../../../application-dev/reference/apis/js-apis-bluetooth-ble.md#advertisedata
)
|
|@ohos.bluetooth.ble|
[
GattProperties
](
../../../application-dev/reference/apis/js-apis-bluetooth-ble.md#gattproperties
)
|
|@ohos.bluetooth.connection|
[
pinType
](
../../../application-dev/reference/apis/js-apis-bluetooth-connection.md#pintype
)
|
|@ohos.bluetooth.connection|
[
BluetoothTransport
](
../../../application-dev/reference/apis/js-apis-bluetooth-connection.md#bluetoothtransport
)
|
|@ohos.bluetooth.constant|
[
ProfileUuids
](
../../../application-dev/reference/apis/js-apis-bluetooth-constant.md#profileuuids
)
|
**适配指导**
注意根据不同profile模块选择import方式,部分接口需要import多个TS文件。
```
js
//例如@ohos.bluetooth.baseProfile下getConnectionState接口。
import
a2dp
from
'
@ohos.bluetooth.a2dp
'
;
try
{
let
a2dpSrc
=
a2dp
.
createA2dpSrcProfile
();
let
ret
=
a2dpSrc
.
getConnectionState
(
'
XX:XX:XX:XX:XX:XX
'
);
}
catch
(
err
)
{
console
.
error
(
'
errCode:
'
+
err
.
code
+
'
, errMessage:
'
+
err
.
message
);
}
```
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录