uni-app程序实现显示蓝牙通信并显示蓝牙接收的数据

该文展示了如何利用uni-app的蓝牙插件在微信小程序中进行蓝牙设备的连接和数据接收。首先在manifest.json配置蓝牙插件,然后在页面模板中创建连接按钮,并在脚本中定义数据对象和连接方法。当连接成功后,监听接收到的蓝牙数据并显示。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

实现蓝牙通信并显示接收的数据,需要借助uni-app提供的蓝牙插件。以下是一个简单的示例程序:

  1. 在manifest.json文件中添加蓝牙插件的配置。
{
  "mp-weixin": {
    "plugins": {
      "wx589698e9c8539a7c": {
        "version": "1.1.1",
        "provider": "wx589698e9c8539a7c"
      }
    }
  }
}
  1. 在页面中添加一个按钮,用于连接蓝牙设备。
<template>
  <view class="content">
    <view class="btn" @tap="connect">
      {{connected ? '断开连接' : '连接蓝牙'}}
    </view>
    <view class="receive">{{receiveMsg}}</view>
  </view>
</template>
  1. 在组件的 script 中定义一个 data 对象,包含蓝牙连接状态、接收数据和Characteristic对象等信息,并定义一个方法用于连接或断开蓝牙设备,并监听接收到的数据。
<script>
export default {
  data() {
    return {
      connected: false,
      receiveMsg: '',
      deviceId: '', // 设备ID
      serviceId: '', // 服务ID
      characteristicId: '', // Characteristic对象ID
    }
  },
  methods: {
    // 连接蓝牙设备
    connect() {
      if (this.connected) {
        // 断开蓝牙连接
        wx.closeBLEConnection({
          deviceId: this.deviceId,
          success: () => {
            console.log('closeBLEConnection success')
            this.connected = false
          }
        })
      } else {
        wx.openBluetoothAdapter({
          success: (res) => {
            console.log('openBluetoothAdapter success', res)
            wx.startBluetoothDevicesDiscovery({
              services: [], //要搜索的服务列表,为空表示搜索所有服务
              success: (res) => {
                console.log('startBluetoothDevicesDiscovery success', res)
                wx.onBluetoothDeviceFound((res) => {
                  console.log('onBluetoothDeviceFound', res)
                  //检索到设备后,连接设备
                  if (res.devices[0].deviceId === '设备ID') {
                    this.deviceId = res.devices[0].deviceId
                    wx.createBLEConnection({
                      deviceId: this.deviceId,
                      timeout: 5000, //超时时间(单位ms),过了这个时间如果还没连接上就会返回失败
                      success: () => {
                        console.log('createBLEConnection success')
                        //连接成功后,获取蓝牙设备的所有服务
                        wx.getBLEDeviceServices({
                          deviceId: this.deviceId,
                          success: (res) => {
                            console.log('getBLEDeviceServices success', res)
                            for (let service of res.services) {
                              if (service.uuid === '服务UUID') {
                                this.serviceId = service.uuid
                                // 连接服务后,获取Characteristic对象
                                wx.getBLEDeviceCharacteristics({
                                  deviceId: this.deviceId,
                                  serviceId: this.serviceId,
                                  success: (res) => {
                                    console.log('getBLEDeviceCharacteristics success', res)
                                    const characteristic = res.characteristics.find(item => item.uuid === '特征UUID')
                                    this.characteristicId = characteristic.uuid
                                    // 监听接收到的数据
                                    wx.onBLECharacteristicValueChange((res) => {
                                      const receiveData = ab2str(res.value)
                                      console.log('接收到的数据:', receiveData)
                                      this.receiveMsg += receiveData
                                    })
                                    // 打开notify
                                    wx.notifyBLECharacteristicValueChange({
                                      deviceId: this.deviceId,
                                      serviceId: this.serviceId,
                                      characteristicId: this.characteristicId,
                                      state: true,
                                      success: (res) => {
                                        console.log('notifyBLECharacteristicValueChange success', res)
                                        this.connected = true
                                      }
                                    })
                                  }
                                })
                              }
                            }
                          }
                        })
                      },
                      fail: (res) => {
                        console.log('createBLEConnection failed', res)
                      }
                    })
                  }
                })
              }
            })
          },
          fail: (res) => {
            console.log('openBluetoothAdapter failed', res)
          }
        })
      }
    }
  }
}

// ArrayBuffer转为字符串
function ab2str(buf) {
  return String.fromCharCode.apply(null, new Uint8Array(buf));
}
</script>
  1. 样式部分可自行添加,最终实现的效果为,点击按钮后可以连接或断开蓝牙设备,并显示接收到的数据。其中,需要将 设备ID服务UUID特征UUID替换为实际的设备ID、服务UUID和特征UUID。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值