鸿蒙Harmony开辟案例教程:如何举行蓝牙设备发现、配对、取消配对功能 ...

打印 上一主题 下一主题

主题 837|帖子 837|积分 2511

如何举行蓝牙毗连

场景说明

蓝牙技能是一种无线数据和语音通信开放的举世规范,它是基于低本钱的近距离无线毗连,为固定和移动设备建立通信环境的一种特殊的毗连。本示例通过@ohos.bluetoothManager接口实现蓝牙设备发现、配对、取消配对功能。
效果呈现

本示例终极效果如下:
发现设备毗连设备断开毗连

  

  

   点击领取→纯血鸿蒙Next全套最新学习资料
运行环境

本例基于以下环境开辟,开辟者也可以基于其他适配的版本举行开辟。


  • IDE:DevEco Studio 3.1.1 Release
  • SDK:Ohos_sdk_full 4.0.8.5(API Version 10 Beta1)
实现思路

本文涉及到蓝牙的设备发现、配对、取消配对三个功能特性,实现思路如下:


  • 启动和关闭蓝牙:在Index页面中通过Toggle组件的onChange函数控制蓝牙的开关,开关打开的环境下实行initBluetooth函数,关闭的环境下实行bluetooth.disableBluetooth()方法来断开蓝牙;
  • 验证蓝牙是否处于毗连状态:蓝牙打开的时候通过bluetooth.on('stateChange')方法监听蓝牙毗连状态改变变乱,如确认已打开,实行foundDevices()函数来查找设备接口,确认已关闭则实行bluetooth.stopBluetoothDiscovery()方法制止查询接口。
  • 发现设备:在foundDevices()函数中通过bluetooth.on('bluetoothDeviceFind')方法监听设备发现变乱,通过bluetooth.getPairedDevices()方法更新已配对蓝牙地址,然后通过bluetooth.startBluetoothDiscovery()方法开启蓝牙扫描发现远端设备,并且通过bluetooth.setBluetoothScanMode()方法来被远端设备发现。
  • 蓝牙配对:通过bluetooth.on('pinRequired')方法监听远端蓝牙设备的配对请求变乱,点击配对实行bluetooth.setDevicePairingConfirmation(this.data.deviceId, true)方法,点击取消实行bluetooth.setDevicePairingConfirmation(this.data.deviceId, false)方法。
  • 取消配对:使用bluetooth.cancelPairedDevice()断开指定的远端设备毗连。
开辟步调


  • 申请蓝牙权限。 使用蓝牙需要先申请对应的权限,在module.json5文件中添加以下配置:
    1. "requestPermissions": [
    2.       {
    3.         //允许应用查看蓝牙的配置
    4.         "name": "ohos.permission.USE_BLUETOOTH",
    5.         "reason": "$string:grant_use_bluetooth",
    6.         "usedScene": {
    7.           "abilities": [
    8.             "MainAbility"
    9.           ],
    10.           "when": "inuse"
    11.         }
    12.       },
    13.       {
    14.         //允许应用配置本地蓝牙,查找远端设备且与之配对连接
    15.         "name": "ohos.permission.DISCOVER_BLUETOOTH",
    16.         "reason": "$string:grant_discovery_bluetooth",
    17.         "usedScene": {
    18.           "abilities": [
    19.             "MainAbility"
    20.           ],
    21.           "when": "inuse"
    22.         }
    23.       },
    24.       {
    25.         //允许应用获取设备位置信息
    26.         "name": "ohos.permission.LOCATION",
    27.         "reason": "$string:grant_location",
    28.         "usedScene": {
    29.           "abilities": [
    30.             "MainAbility"
    31.           ],
    32.           "when": "inuse"
    33.         }
    34.       },
    35.       {
    36.         //允许应用获取设备模糊位置信息
    37.         "name": "ohos.permission.APPROXIMATELY_LOCATION",
    38.         "reason": "$string:grant_location",
    39.         "usedScene": {
    40.           "abilities": [
    41.             "MainAbility"
    42.           ],
    43.           "when": "inuse"
    44.         }
    45.       },
    46.       {
    47.         //允许应用配对蓝牙设备,并对设备的电话簿或消息进行访问
    48.         "name": "ohos.permission.MANAGE_BLUETOOTH",
    49.         "reason": "$string:grant_manage_bluetooth",
    50.         "usedScene": {
    51.           "abilities": [
    52.             "MainAbility"
    53.           ],
    54.           "when": "inuse"
    55.         }
    56.       }
    57.     ]
    复制代码
  • 构建UI框架,团体的UI框架分为TitleBar(页面名称),PinDialog(配对蓝牙弹框),index(主页面)三个部分。
    1. //Common/TitleBar.ets
    2. @Component
    3. export struct TitleBar {
    4.   private handlerClickButton: () => void
    5.   build() {
    6.     Row() {
    7.       Image($r('app.media.ic_back'))
    8.         .width(40)
    9.         .height(30)
    10.         .onClick(() => {
    11.           this.handlerClickButton()
    12.         })
    13.       Text($r('app.string.bluetooth'))
    14.         .fontSize(30)
    15.         .width(150)
    16.         .height(50)
    17.         .margin({ left: 15 })
    18.         .fontColor('#ffa2a3a4')
    19.     }
    20.     .width('100%')
    21.     .height(60)
    22.     .padding({ left: 20, top: 10 })
    23.     .backgroundColor('#ff2d30cb')
    24.     .constraintSize({ minHeight: 50 })
    25.   }
    26. }
    27. //Common/PinDalog.ets
    28. ...
    29. aboutToAppear() {
    30.     this.titleText = `"${this.data.deviceId}"要与您配对。请确认此配对码已在"${this.data.deviceId}"上直接显示,且不是手动输入的。`
    31.     this.pinCode = JSON.stringify(this.data.pinCode)
    32.   }
    33.   build() {
    34.     //配对弹框描述文字
    35.     Column({ space: 10 }) {
    36.       Text($r('app.string.match_request'))
    37.         .fontSize(30)
    38.         .alignSelf(ItemAlign.Start)
    39.       Text(this.titleText)
    40.         .alignSelf(ItemAlign.Start)
    41.         .margin({ top: 20 })
    42.         .fontSize(21)
    43.       Text(this.pinCode)
    44.         .fontSize(40)
    45.         .fontWeight(FontWeight.Bold)
    46.         .margin({ top: 20 })
    47.       Flex({ direction: FlexDirection.Row, alignItems: ItemAlign.Center }) {
    48.         Checkbox({ name: 'checkbox' })
    49.           .select(false)
    50.           .selectedColor('#ff3d6fb8')
    51.           .key('checkBox')
    52.         Text($r('app.string.grant_permission'))
    53.           .fontSize(15)
    54.           .margin({ left: 3, top: 6 })
    55.       }
    56.       .alignSelf(ItemAlign.Start)
    57.       .width('95%')
    58.       .margin({ top: 5 })
    59.       Row() {
    60.         //配对选择UI,取消or配对
    61.         this.choiceText($r('app.string.cancel'), () => {
    62.           bluetooth.setDevicePairingConfirmation(this.data.deviceId, false)
    63.           logger.info(TAG, `setDevicePairingConfirmation = ${bluetooth.setDevicePairingConfirmation(this.data.deviceId, false)}`)
    64.           this.controller.close()
    65.         })
    66.         Divider()
    67.           .vertical(true)
    68.           .height(32)
    69.         this.choiceText($r('app.string.match'), () => {
    70.           bluetooth.setDevicePairingConfirmation(this.data.deviceId, true)
    71.           logger.info(TAG, `setDevicePairingConfirmation = ${bluetooth.setDevicePairingConfirmation(this.data.deviceId, true)}`)
    72.           this.controller.close()
    73.         })
    74.       }
    75.       .margin({ top: 20 })
    76.     }
    77.     .width('100%')
    78.     .padding(15)
    79.   }
    80. ...
    81. //pages/index.ets
    82. @Entry
    83. @Component
    84. struct Index {
    85. build() {
    86.     Column() {
    87.       TitleBar({ handlerClickButton: this.handlerClickButton })
    88.       Scroll() {
    89.         Column() {
    90.           Row() {
    91.             //蓝牙开关
    92.             Column() {
    93.               Text($r('app.string.bluetooth'))
    94.                 .fontSize(30)
    95.                 .margin({ top: 20 })
    96.                 .alignSelf(ItemAlign.Start)
    97.               if (true === this.isOn) {
    98.                 Text($r('app.string.discovery'))
    99.                   .fontSize(20)
    100.                   .alignSelf(ItemAlign.Start)
    101.               }
    102.             }
    103.             Blank()
    104.             Column() {
    105.               Toggle({ type: ToggleType.Switch, isOn: this.isOn })
    106.                 .selectedColor('#ff2982ea')
    107.                 .onChange((isOn: boolean) => {
    108.                   if (isOn) {
    109.                     this.isOn = true
    110.                     this.initBluetooth()
    111.                   } else {
    112.                     this.isOn = false
    113.                     bluetooth.disableBluetooth()
    114.                     this.deviceList = []
    115.                     this.discoveryList = []
    116.                   }
    117.                 })
    118.             }
    119.             .id('toggleBtn')
    120.           }
    121.           .width('90%')
    122.           if (this.isOn) {
    123.             Divider()
    124.               .vertical(false)
    125.               .strokeWidth(10)
    126.               .color('#ffece7e7')
    127.               .lineCap(LineCapStyle.Butt)
    128.               .margin('1%')
    129.             //已配对的设备
    130.             Text($r('app.string.paired_device'))
    131.               .fontSize(25)
    132.               .fontColor('#ff565555')
    133.               .margin({ left: '5%' })
    134.               .alignSelf(ItemAlign.Start)
    135.             ForEach(this.deviceList, (item, index) => {
    136.               Row() {
    137.                 Text(item)
    138.                   .fontSize(20)
    139.               }
    140.               .alignSelf(ItemAlign.Start)
    141.               .width('100%')
    142.               .height(50)
    143.               .margin({ left: '5%', top: '1%' })
    144.               .id(`pairedDevice${index}`)
    145.               .onClick(() => {
    146.                 AlertDialog.show({
    147.                   //取消配对
    148.                   title: $r('app.string.disconnect'),
    149.                   message: '此操作将会断开您与以下设备的连接:' + item,
    150.                   primaryButton: {
    151.                     value: $r('app.string.cancel'),
    152.                     action: () => {
    153.                     }
    154.                   },
    155.                   //确认取消
    156.                   secondaryButton: {
    157.                     value: $r('app.string.confirm'),
    158.                     action: () => {
    159.                       try {
    160.                         bluetooth.cancelPairedDevice(item);
    161.                         this.deviceList = bluetooth.getPairedDevices()
    162.                         this.discoveryList = []
    163.                         bluetooth.startBluetoothDiscovery()
    164.                       } catch (err) {
    165.                         console.error("errCode:" + err.code + ",errMessage:" + err.message);
    166.                       }
    167.                     }
    168.                   }
    169.                 })
    170.               })
    171.             })
    172.             Divider()
    173.               .vertical(false)
    174.               .strokeWidth(10)
    175.               .color('#ffece7e7')
    176.               .lineCap(LineCapStyle.Butt)
    177.               .margin('1%')
    178.             Text($r('app.string.available_device'))
    179.               .fontSize(25)
    180.               .fontColor('#ff565555')
    181.               .margin({ left: '5%', bottom: '2%' })
    182.               .alignSelf(ItemAlign.Start)
    183.             //可用设备列表
    184.             ForEach(this.discoveryList, (item) => {
    185.               Row() {
    186.                 Text(item)
    187.                   .fontSize(20)
    188.               }
    189.               .alignSelf(ItemAlign.Start)
    190.               .width('100%')
    191.               .height(50)
    192.               .margin({ left: '5%', top: '1%' })
    193.               //进行配对操作点击
    194.               .onClick(() => {
    195.                 logger.info(TAG, `start bluetooth.pairDevice,item = ${item}`)
    196.                 let pairStatus = bluetooth.pairDevice(item)
    197.                 logger.info(TAG, `pairStatus = ${pairStatus}`)
    198.               })
    199.               Divider()
    200.                 .vertical(false)
    201.                 .color('#ffece7e7')
    202.                 .lineCap(LineCapStyle.Butt)
    203.                 .margin('1%')
    204.             })
    205.           }
    206.         }
    207.       }
    208.       .constraintSize({ maxHeight: '85%' })
    209.     }
    210.   }
    211. }
    复制代码

  • 蓝牙开关打开关闭利用,需要打开蓝牙开关才能举行后续利用:
    1. initBluetooth() {
    2.     bluetooth.on('stateChange', (data) => {
    3.       logger.info(TAG, `enter on stateChange`)
    4.       //判断蓝牙开关状态
    5.       if (data === bluetooth.BluetoothState.STATE_ON) {
    6.         logger.info(TAG, `enter BluetoothState.STATE_ON`)
    7.         //蓝牙打开后的相关操作
    8.         this.foundDevices()
    9.       }
    10.       if (data === bluetooth.BluetoothState.STATE_OFF) {
    11.         logger.info(TAG, `enter BluetoothState.STATE_OFF`)
    12.         bluetooth.off('bluetoothDeviceFind', (data) => {
    13.           logger.info(TAG, `offBluetoothDeviceFindData = ${JSON.stringify(data)}`)
    14.         })
    15.         //关闭
    16.         bluetooth.stopBluetoothDiscovery()
    17.         this.discoveryList = []
    18.       }
    19.       logger.info(TAG, `BluetoothState = ${JSON.stringify(data)}`)
    20.     })
    21.     //开启蓝牙
    22.     bluetooth.enableBluetooth()
    23.   }
    复制代码

  • 设置蓝牙扫描模式并开启扫描去发现设备,并订阅蓝牙设备发现上报时间获取设备列表
    1. foundDevices() {
    2.     //订阅蓝牙设备发现上报事件
    3.     bluetooth.on('bluetoothDeviceFind', (data) => {
    4.       logger.info(TAG, `enter on bluetoothDeviceFind`)
    5.       if (data !== null && data.length > 0) {
    6.         if (this.discoveryList.indexOf(data[0]) === -1 && this.deviceList.indexOf(data[0]) === -1) {
    7.           this.discoveryList.push(data[0])
    8.         }
    9.         logger.info(TAG, `discoveryList = ${JSON.stringify(this.discoveryList)}`)
    10.       }
    11.       let list = bluetooth.getPairedDevices()
    12.       if (list !== null && list.length > 0) {
    13.         this.deviceList = list
    14.         logger.info(TAG, `deviceList =  ${JSON.stringify(this.deviceList)}`)
    15.       }
    16.     })
    17.     //开启蓝牙扫描,可以发现远端设备
    18.     bluetooth.startBluetoothDiscovery()
    19.     //设置蓝牙扫描模式,可以被远端设备发现
    20.     bluetooth.setBluetoothScanMode(bluetooth.ScanMode.SCAN_MODE_CONNECTABLE_GENERAL_DISCOVERABLE, TIME)
    21.   }
    复制代码

  • 设置蓝牙扫描模式并开启扫描去发现设备,并订阅蓝牙设备发现上报时间获取设备列表
    1. //配对确定和取消代码在PinDialog.ets文件中
    2. //setDevicePairingConfirmation(device: string, accept: boolean): void
    3. //device        string        表示远端设备地址,例如:"XX:XX:XX:XX:XX:XX
    4. //accept        boolean        接受配对请求设置为true,否则设置为false
    5. //订阅蓝牙配对状态改变事件,根据蓝牙状态更新设备列表
    6. bluetooth.on('bondStateChange', (data) => {
    7.     logger.info(TAG, `enter bondStateChange`)
    8.     logger.info(TAG, `data = ${JSON.stringify(data)}`)
    9.     if (data.state === bluetooth.BondState.BOND_STATE_BONDED) {
    10.         logger.info(TAG, `BOND_STATE_BONDED`)
    11.         let index = this.discoveryList.indexOf(data.deviceId)
    12.         this.discoveryList.splice(index, 1)
    13.         this.deviceList = bluetooth.getPairedDevices()
    14.     }
    15.     if (data.state === bluetooth.BondState.BOND_STATE_INVALID) {
    16.         logger.info(TAG, `BOND_STATE_INVALID`)
    17.         this.deviceList = bluetooth.getPairedDevices()
    18.     }
    19.     logger.info(TAG, `bondStateChange,data = ${JSON.stringify(data)}`)
    20. })
    复制代码


最后


有很多小伙伴不知道学习哪些鸿蒙开辟技能?不知道需要重点掌握哪些鸿蒙应用开辟知识点?但是又不知道从那里下手,而且学习时频仍踩坑,终极浪费大量时间。以是本人整理了一些比较符合的鸿蒙(HarmonyOS NEXT)学习路径和一些资料的整理供小伙伴学习
点击领取→纯血鸿蒙Next全套最新学习资料(安全链接,放心点击
希望这一份鸿蒙学习资料能够给大家带来资助,有需要的小伙伴自行领取,限时开源,先到先得~无套路领取!!
      
一、鸿蒙(HarmonyOS NEXT)最新学习路线

   

有了路线图,怎么能没有学习资料呢,小编也准备了一份联合鸿蒙官方发布条记整理收纳的一套体系性的鸿蒙(OpenHarmony )学习手册(共计1236页)与鸿蒙(OpenHarmony )开辟入门讲授视频,内容包含:(ArkTS、ArkUI开辟组件、Stage模型、多端部署、分布式应用开辟、音频、视频、WebGL、OpenHarmony多媒体技能、Napi组件、OpenHarmony内核、Harmony南向开辟、鸿蒙项目实战等等)鸿蒙(HarmonyOS NEXT)…等技能知识点。
获取以上完整版高清学习路线,请点击→纯血版全套鸿蒙HarmonyOS学习资料
二、HarmonyOS Next 最新全套视频教程


三、《鸿蒙 (OpenHarmony)开辟底子到实战手册》
OpenHarmony北向、南向开辟环境搭建

《鸿蒙开辟底子》


  • ArkTS语言
  • 安装DevEco Studio
  • 运用你的第一个ArkTS应用
  • ArkUI声明式UI开辟
  • .……

《鸿蒙开辟进阶》


  • Stage模型入门
  • 网络管理
  • 数据管理
  • 电话服务
  • 分布式应用开辟
  • 通知与窗口管理
  • 多媒体技能
  • 安全技能
  • 任务管理
  • WebGL
  • 国际化开辟
  • 应用测试
  • DFX面向未来设计
  • 鸿蒙体系移植和裁剪定制
  • ……

《鸿蒙进阶实战》


  • ArkTS实践
  • UIAbility应用
  • 网络案例
  • ……

四、大厂口试必问口试题

五、鸿蒙南向开辟技能

六、鸿蒙APP开辟必备

七、鸿蒙生态应用开辟白皮书V2.0PDF


完整鸿蒙HarmonyOS学习资料,请点击→纯血版全套鸿蒙HarmonyOS学习资料
总结
总的来说,华为鸿蒙不再兼容安卓,对中年步伐员来说是一个挑衅,也是一个机会。只有积极应对变化,不停学习和提拔自己,他们才能在这个变革的时代中立于不败之地。 

                        



免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
回复

使用道具 举报

0 个回复

正序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

tsx81429

金牌会员
这个人很懒什么都没写!

标签云

快速回复 返回顶部 返回列表