codecamp

鸿蒙OS 传统蓝牙远端设备操作

场景介绍

传统蓝牙远端管理操作主要是针对远端蓝牙设备的基本操作,包括获取远端蓝牙设备地址、类型、名称和配对状态,以及向远端设备发起配对。

接口说明

接口名 功能描述
getDeviceAddr() 获取远端蓝牙设备地址。
getDeviceClass() 获取远端蓝牙设备类型。
getDeviceName() 获取远端蓝牙设备名称。
getPairState() 获取远端设备配对状态。
startPair() 向远端设备发起配对。

开发步骤

  1. 调用 BluetoothHost 的 getDefaultHost(Context context)接口,获取 BluetoothHost 实例,管理本机蓝牙操作。

  1. 调用 enableBt() 接口,打开蓝牙。
  2. 调用 startBtDiscovery(),扫描设备。
  3. 调用 startPair(),发起配对。

   // 获取蓝牙本机管理对象
   BluetoothHost bluetoothHost = BluetoothHost.getDefaultHost(context);
   // 调用打开接口
   bluetoothHost.enableBt();
   // 调用扫描接口
   bluetoothHost.startBtDiscovery(); 
   //设置界面会显示出扫描结果列表,点击蓝牙设备去配对
   BluetoothRemoteDevice device = bluetoothHost.getRemoteDev(TEST_ADDRESS);
   device.startPair();
鸿蒙OS 传统蓝牙本机管理
鸿蒙OS BLE扫描和广播
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

鸿蒙OS 开发

鸿蒙OS 术语

鸿蒙OS Java API参考

鸿蒙OS ohos.aafwk.ability

鸿蒙OS ohos.aafwk.abilityjet.activedata

鸿蒙OS ohos.aafwk.content

鸿蒙OS java.lang

鸿蒙OS java.Util

鸿蒙OS java.Util class

鸿蒙OS ohos.data.dataability

鸿蒙OS ohos.data.dataability class

鸿蒙OS ohos.agp.components

鸿蒙OS ohos.agp.components interface

鸿蒙OS ohos.agp.components class

鸿蒙OS ohos.global.configuration

鸿蒙OS java.io

鸿蒙OS ohos.data.resultset

鸿蒙OS ohos.data.resultset interface

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }