• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

微信小程序蓝牙

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

初始化蓝牙模块

openBluetoothAdapter() {
      wx.openBluetoothAdapter({
        success: (res) => {
          wx.showToast({
            title: \'初始化成功\',
          })
        },
        fail: (res) => {
          wx.showToast({
            title: \'初始化失败\',
            icon: \'none\'
          })
        }
      })
    },

开始搜索蓝牙模块

startBluetoothDevicesDiscovery() {
      if (this._discoveryStarted) {
        return
      }
      this._discoveryStarted = true
      wx.startBluetoothDevicesDiscovery({
        allowDuplicatesKey: true,
        success: (res) => {
          this.onBluetoothDeviceFound()
        },
        fail: (res) => {
          wx.showToast({
            title: \'扫描失败\',
            icon: \'none\'
          })
        }
      })
    },

搜索蓝牙设备

onBluetoothDeviceFound() {
      wx.onBluetoothDeviceFound((res) => {
        res.devices.forEach(device => {
          if (!device.name && !device.localName) {
            return
          }
          let foundDevices = this.data.devices
          let idx = inArray(foundDevices, \'deviceId\', device.deviceId)
          let data = {}
          if (idx === -1) {
            data[`devices[${foundDevices.length}]`] = device
          } else {
            data[`devices[${idx}]`] = device
          }
          this.setData(data)
        })
      })
    },

连接蓝牙设备

createBLEConnection(e) {
      let ds = e.currentTarget.dataset
      app.globalData.deviceId = ds.deviceId;
      app.globalData.deviceName = ds.name;
      let deviceId = ds.deviceId;
      let name = app.globalData.deviceName;
      //创建低功耗蓝牙连接
      wx.showLoading({
        title: \'正在连接···\',
        icon: \'loading\',
      })
      wx.createBLEConnection({
        deviceId,
        success: (res) => {
          wx.showToast({
            title: \'连接设备成功\',
          })
          this.setData({
            connected: true,
            show: true,
            name: name,
            deviceId: deviceId,
          })
          app.globalData.show = "true"
          app.globalData.connected = "true"
          //获取所有服务
          wx.getBLEDeviceServices({
            deviceId,
            success: (res) => {
              this.setData({
                res2: res
              })
            }
          })
          wx.navigateBack({
            delta: 1
          })
        },
        fail() {
          wx.showToast({
            title: \'连接设备失败\',
            icon: \'none\'
          })
        }
      })
    },

停止搜寻附近的蓝牙外围设备

closeBLEConnection: function (e) {
      wx.closeBLEConnection({
        deviceId: this.data.deviceId
      })
      this.setData({
        connected: false,
        chs: [],
        canWrite: false,
        show: false,
      })
      app.globalData.connected = false
      app.globalData.show = false
    },

关闭蓝牙模块

closeBluetoothAdapter() {
      wx.closeBluetoothAdapter()
      this._discoveryStarted = false
    },

鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
微信小程序蓝牙设备接入教程发布时间:2022-07-18
下一篇:
小程序蓝牙BLE发布时间:2022-07-18
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap