微信小程序蓝牙搜索功能

微信小程序官方文档:微信开放文档

1.首先判断蓝牙是否打开

  // 一 初始化蓝牙模块
  openBluetoothAdapter() {
    let _this = this;
    wx.openBluetoothAdapter({
      // 成功回调函数
      success(res) {
        // console.log(res)
        // 搜索提示
        wx.showLoading({
          title: '蓝牙搜索中',
        })
        setTimeout(function () {
          wx.hideLoading()
        }, 3000)
        _this.startBeaconDiscovery()
      },
      // 失败回调
      fail(res) {
        // console.log(res);
        wx.showToast({
          title: '请开启蓝牙',
          icon: 'fails',
          duration: 1000
        })
      }
    })
  },

2.搜索设备

  // 搜索设备
  startBeaconDiscovery() {
    let _this = this;
    console.log(_this.data.deviceid);
    wx.startBeaconDiscovery({
      uuids:["FDA50693-A4E2-4FB1-AFCF-C6EB07647826", "FDA50693-A4E2-4FB1-AFCF-C6EB07640002", "FDA50693-A4E2-4FB1-AFCF-C6EB07640001", "FDA50693-A4E2-4FB1-AFCF-C6EB07640000"],//获取设备的uuids
      success(res) {
        // console.log(res);
        _this.onBeaconUpdate()
      }
    })
  },

3.监听搜索设备

 // 监听搜索设备
  onBeaconUpdate() {
    let _this = this;
    wx.onBeaconUpdate(res => {
      // console.log(res.beacons)
      _this.getBeacons();
    })
  },

4.获取已搜索到的设备,判断是否搜索到设备之后停止,

        我这里是设置了一个定时器,三秒后停止搜索

  // 获取已搜索到的设备
  getBeacons() {
    let _this = this;
    wx.getBeacons({
      success(res) {
        // console.log(res);
        for (let i = 0; i < _this.data.data.length; i++) {
          if (_this.data.data[i].deviceid == _this.data.uids) {
            _this.setData({
              deuids: _this.data.data[i]
            })
            if (_this.data.deuids) {
              setTimeout(() => {
                //停止搜索
                wx.stopBeaconDiscovery({
                  success(res) {
                    console.log(res);
                    _this.detaile();
                  },
                  fail(res) {
                    console.log(res);
                  }
                })
              }, 3000);
            }
          }
        }
      }
    })
  },

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值