2021-02-25(uni-app蓝牙开锁篇)

此文章参考他人的文章:https://www.jianshu.com/p/841fcae155fc

蓝牙整个步骤:1初始化蓝牙,2开始搜寻附近的蓝牙外围设备,3监听寻找到新设备的事件,4搜寻到需要的蓝牙,停止搜寻附近的蓝牙外围设备,5连接低功耗蓝牙设备,6获取蓝牙设备所有服务(service),7获取蓝牙设备某个服务中所有特征值(characteristic),8启用低功耗蓝牙设备特征值变化时的 notify 功能,订阅特征值。注意:必须设备的特征值支持 notify 或者 indicate 才可以成功调用,9向低功耗蓝牙设备特征值中写入二进制数据。

uni.openBluetoothAdapter({

  //首先初始化蓝牙

  success(res) {

    console.log(JSON.stringify(res))

    uni.startBluetoothDevicesDiscovery({

      //这里是开启蓝牙搜寻

      success: res => {

        console.log('startBluetoothDevicesDiscovery success', res)

        uni.onBluetoothDeviceFound(res => {

          //这一步是监听返回的蓝牙设备

          console.log(JSON.stringify(res))

          res.devices.forEach(device => {

            //这一步就是去筛选找到的蓝牙中,有没有你匹配的名称

            console.log(JSON.stringify(device))

            if (device.name == 'XiaoanTech') {

              this.DeviceID = device.deviceId

              let DeviceID = device.deviceId //这里是拿到的uuid

              uni.stopBluetoothDevicesDiscovery({

                //当找到匹配的蓝牙后就关掉蓝牙搜寻,因为蓝牙搜寻很耗性能

                success(res) {

                  console.log(JSON.stringify(res))

                }

              })

              console.log(DeviceID)

              uni.createBLEConnection({

                //连接低功耗蓝牙设备

                deviceId: DeviceID, //传入刚刚获取的uuid

                success(res) {

                  console.log(JSON.stringify(res))

                  //uni.getConnectedBluetoothDevices({

                  //success(res) {

                  //console.log(JSON.stringify(res))

                  //}

                  //})

                  setTimeout(function() {

                    //这里为什么要用setTimeout呢,等等下面会解释

                    uni.getBLEDeviceServices({

                      //获取蓝牙设备所有服务

                      deviceId: DeviceID,

                      success(res) {

                        //为什么要用延时,因为不用延时就拿不到所有的服务,在上一步,连接低功耗蓝牙

                        //设备的时候,需要一个600-1000毫秒的时间后,再去获取设备所有服务,不给延时就会一直返回错误码10004

                        console.log(JSON.stringify(res))

                        uni.getBLEDeviceCharacteristics({

                          //获取蓝牙设备某个服务中所有特征值

                          deviceId: DeviceID,

                          serviceId: this.ServiceUUID, //这个serviceId可以在上一步获取中拿到,也可以在

                          //蓝牙文档中(硬件的蓝牙文档)拿到,我这里是通过文档直接赋值上去的,一般有两个,一个是收的uuid,一个是发的uuid,我们这边是发

                          success(res) {

                            console.log(JSON.stringify(res))

                            uni.notifyBLECharacteristicValueChange({

                              state: true, // 启用 notify 功能

                              // 这里的 deviceId 需要已经通过 createBLEConnection 与对应设备建立链接

                              deviceId: DeviceID,

                              // 这里的 serviceId 需要在 getBLEDeviceServices 接口中获取

                              serviceId: this.ServiceUUID,

                              // 这里的 characteristicId 需要在 getBLEDeviceCharacteristics 接口中获取

                              characteristicId: self.characteristicId,

                              success(res) {

                                console.log(

                                  'notifyBLECharacteristicValueChange success',

                                  res.errMsg

                                )

                                uni.showToast({

                                  title: '开启蓝牙连接',

                                  duration: 2000

                                })

                              },

                              fail(res) {

                                console.log(JSON.stringify(res))

                              }

                            })

                          },

                          fail(res) {

                            console.log(JSON.stringify(res))

                          }

                        })

                      },

                      fail(res) {

                        console.log(JSON.stringify(res))

                      }

                    })

                  }, 1000)

                },

                fail(res) {

                  console.log(res)

                }

              })

            }

          })

        })

      }

    })

  },

  fail(res) {

    console.log(res)

    if (res.errCode == 10001) {

      uni.showToast({

        title: '蓝牙未打开',

        duration: 2000

      })

    } else {

      uni.showToast({

        title: res.errMsg,

        duration: 2000

      })

    }

  }

})

蓝牙连接成功后就是发送指令了,发送二进制数据

    SendChange(){

      //开锁

      var self = this

      // 向蓝牙设备发送一个0x00的16进制数据

      let buffer = new ArrayBuffer(8)

      let dataView = new DataView(buffer)

      dataView.setUint8(0, 0x20) //开锁指令

      dataView.setUint8(1, 0x05) //字节

      dataView.setUint8(2, 0x0a) //指令

      dataView.setUint8(3, 0x0a) //指令

      dataView.setUint8(4, 0x05) //指令

      dataView.setUint8(5, 0x05) //指令

      dataView.setUint8(6, 0x00) //指令

      //算法,逢10进1,A到F(或a~f)表示,其中:A~F表示10~15

      //20等于32,32+05+10+10+5+5+0 = 67

      dataView.setUint8(7, 0x43)

      uni.writeBLECharacteristicValue({

        // 这里的 deviceId 需要在 getBluetoothDevices 或 onBluetoothDeviceFound 接口中获取

        deviceId: self.DeviceID,

        // 这里的 serviceId 需要在 getBLEDeviceServices 接口中获取

        serviceId: self.ServiceUUID,

        // 这里的 characteristicId 需要在 getBLEDeviceCharacteristics 接口中获取

        characteristicId: self.characteristicId,

        // 这里的value是ArrayBuffer类型

        value: buffer,

        success(res) {

          console.log('writeBLECharacteristicValue success', res.errMsg)

          uni.showToast({

            title: '开锁',

            duration: 2000

          })

        },

        fail(res) {

          console.log(JSON.stringify(res))

          console.log(JSON.stringify(buffer))

        }

      })

    },

    CloseChange: function() {

      //关锁

      var self = this

      // 向蓝牙设备发送一个0x00的16进制数据

      let buffer = new ArrayBuffer(8)

      let dataView = new DataView(buffer)

      dataView.setUint8(0, 0x20)

      dataView.setUint8(1, 0x05)

      dataView.setUint8(2, 0x0a)

      dataView.setUint8(3, 0x0a)

      dataView.setUint8(4, 0x05)

      dataView.setUint8(5, 0x05)

      dataView.setUint8(6, 0x01)

      dataView.setUint8(7, 0x44)

      uni.writeBLECharacteristicValue({

        // 这里的 deviceId 需要在 getBluetoothDevices 或 onBluetoothDeviceFound 接口中获取

        deviceId: self.DeviceID,

        // 这里的 serviceId 需要在 getBLEDeviceServices 接口中获取

        serviceId: self.ServiceUUID,

        // 这里的 characteristicId 需要在 getBLEDeviceCharacteristics 接口中获取

        characteristicId: self.characteristicId,

        // 这里的value是ArrayBuffer类型

        value: buffer,

        success(res) {

          console.log('writeBLECharacteristicValue success', res.errMsg)

          uni.showToast({

            title: '关锁',

            duration: 2000

          })

        },

        fail(res) {

          console.log(JSON.stringify(res))

          console.log(JSON.stringify(buffer))

        }

      })

    }

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,383评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,522评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 157,852评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,621评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,741评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,929评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,076评论 3 410
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,803评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,265评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,582评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,716评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,395评论 4 333
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,039评论 3 316
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,798评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,027评论 1 266
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,488评论 2 361
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,612评论 2 350

推荐阅读更多精彩内容