微信小程序获取蓝牙并实现内容打印

通过微信小程序如何实现获取蓝牙打印机并实现打印能力,之前做过一个测试Dome,能够获取附近的蓝牙打印机设备并实现打印,今天开放出来供大家参考。

wxml

<!--右下角搜索-->
<view class="ly-cass-box"><view class="ly-cass" bindtap="openBluetoothAdapter"><image src="/images/search.png" style="width: 70rpx;height: 70rpx;" /></view><text class="ly-text">{{ly_text}}</text>
</view><view style="margin: 80rpx 20rpx 30rpx 20rpx;"><view class="has-devices-list-container"><view class="tip-search">搜索到的设备</view><view class="devices-list"><view wx:for="{{devices}}" wx:key="index" class="devices-item"><view style="flex:2">{{item.name? item.name:item.localName}}</view><button  style="flex:1;" id="{{index}}"  bindtap="_createBLEConnection">连接</button></view></view></view>
</view>

wxss

  • /* 搜索 */
    .ly-cass-box{width: 150rpx;height: auto;display: flex;align-items: center;justify-content: center;flex-direction: column;position: fixed;bottom:70rpx;right: 50rpx;z-index: 500;
    }
    .ly-cass{width: 120rpx;height: 120rpx;background-color: #f4f4f5;border-radius: 50%;display: flex;align-items: center;justify-content: center;
    }
    .ly-text{margin-top: 20rpx;background-color: #eee;padding: 2rpx 8rpx 2rpx 8rpx;border-radius: 6rpx;font-size: 25rpx;
    }.no-open-gps-tip {width: 100%;display: flex;flex-direction: row;align-items: center;color: #fa3534;font-weight: 400;font-size: 30rpx;background: rgba(235, 207, 48, 0.8);padding: 30rpx;
    }
    .devices-item {width: 100%;display: flex;justify-content: space-between;margin-top: 20rpx;align-items: flex-end;padding-bottom: 5rpx;border-bottom: 1px solid #f4f4f5;
    }.devices-list {width: 100%;padding: 0 20rpx;display: flex;flex-direction: column;}.tip-search {width: 100%;margin: 20rpx 0;text-align: left;font-size: 16px;color: #2979ff;
    }.has-devices-list-container {width: 100%;display: flex;flex-direction: column;margin: 30rpx 0;
    }

    这是我刚开发上线的的两个小游戏,欢迎大家扫码体验!

 以上两个《蛇王传说》《番茄花园》已上线微信/抖音平台运营。

《番茄花园》游戏源码已上架Cocos Store 商店,欢迎围观!Cocos StoreCocos商城 Creator扩展icon-default.png?t=N7T8https://store.cocos.com/app/detail/6122

js

const LAST_CONNECTED_DEVICE = 'last_connected_device';
const PrinterJobs = require('../../printer/printerjobs');
const printerUtil = require('../../printer/printerutil');
Page({data: {ly_text: "点击搜索",connected_ly: false, //蓝牙按钮是否显示blue_list_ly: false, //蓝牙连接列表显示discoveryStarted: false,devices: [], //已发现的蓝牙设备列表name: '', //已连接的设备名称deviceId: '', //已连接的设备deviceIdchs: [],canWrite: false,},/*** 第一步 判断初始化蓝牙模块是否可用*/openBluetoothAdapter() {if (!wx.openBluetoothAdapter) {wx.showModal({title: '提示',content: '当前微信版本过低,无法使用该功能,请升级到最新微信版本后重试。'})return}this.openBluetoothAdapters()},/*** 第二步 初始化蓝牙模块*/openBluetoothAdapters() {this.setData({ly_text: '搜索设备中'})wx.openBluetoothAdapter({ //请求打开蓝牙情况success: res => {//console.log('初始化蓝牙模块->res:', res)this.startBluetoothDevicesDiscovery(); //打开蓝牙后 开始搜索},fail: err => {console.log('初始化蓝牙模块->err:', err)// 错误码	错误信息	说明// 0	ok	正常// -1	already connect	已连接// 10000	not init	未初始化蓝牙适配器// 10001	not available	当前蓝牙适配器不可用// 10002	no device	没有找到指定设备// 10003	connection fail	连接失败// 10004	no service	没有找到指定服务// 10005	no characteristic	没有找到指定特征// 10006	no connection	当前连接已断开// 10007	property not support	当前特征不支持此操作// 10008	system error	其余所有系统上报的异常// 10009	system not support	Android 系统特有,系统版本低于 4.3 不支持 BLE// 10012	operate time out	连接超时// 10013	invalid_data	连接 deviceId 为空或者是格式不正确// object.fail 回调函数返回的 state 参数(仅 iOS)// 状态码	说明// 0	未知// 1	重置中// 2	不支持// 3	未授权// 4	未开启if (err.errCode === 10001) { //10001 当前蓝牙适配器不可用wx.showModal({title: '错误',content: '当前蓝牙适配器不可用,请打开手机蓝牙后重试!',showCancel: false});//监听蓝牙适配器状态变化事件wx.onBluetoothAdapterStateChange(res => {console.log('蓝牙适配器是否可用->res:', res);if (res.available) { //available=true 蓝牙适配器可用wx.onBluetoothAdapterStateChange(() => {});this.startBluetoothDevicesDiscovery();}})} else {wx.showModal({title: '错误',content: `错误码:[${err.errCode}] 错误信息:[${err.errMsg}]`,showCancel: false});}}});},/** * 第三步 开始搜寻附近的蓝牙外围设备*/startBluetoothDevicesDiscovery() {this.data.discoveryStarted = truewx.startBluetoothDevicesDiscovery({success: res => {console.log('开始搜寻附近的蓝牙外围设备->res', res)this.onBluetoothDeviceFound(); //蓝牙搜索成功后监听搜索},fail: (err) => {console.log('开始搜寻附近的蓝牙外围设备->err', err)}})},/*** 第四步 监听搜索到新设备的事件*/onBluetoothDeviceFound() {wx.onBluetoothDeviceFound(res => {res.devices.forEach(device => {if (!device.name && !device.localName) {return}let foundDevices = this.data.devices || []let idx = this.inArray(foundDevices, 'deviceId', device.deviceId);if (idx === -1) {this.data.devices.push(device);console.log('发现新设备:', device); //添加新设备} else {this.data.devices[idx] = device; //更新设备数据}})if (this.data.devices.length >= 1) {this.setData({blue_list_ly: true,ly_text: '发现设备'})} else {this.setData({ly_text: '未发现设备'})}this.setData({devices: this.data.devices})})},/*** 第五步 连接蓝牙低功耗设备* @param {手动点击连接蓝牙事件}* @param {创建连接蓝牙}* @param {如果已经连接过可直接连接}*/_createBLEConnection(e) {let idx = e.currentTarget.idlet name = this.data.devices[idx].namelet deviceId = this.data.devices[idx].deviceIdthis.setData({name,deviceId})console.log(name)//连接蓝牙低功耗设备。// 若小程序在之前已有搜索过某个蓝牙设备,并成功建立连接,可直接传入之前搜索获取的 deviceId 直接尝试连接该设备,无需再次进行搜索操作wx.createBLEConnection({deviceId,success: (res) => {console.log('连接蓝牙低功耗设备->res:', res);this.setData({blue_list_ly: false,connected_ly: true,ly_text: '已连接'})//获取蓝牙->保存到缓存this.getBLEDeviceServices(deviceId);wx.setStorage({key: LAST_CONNECTED_DEVICE,data: {name,deviceId}})},fail: (err) => {console.log('连接蓝牙低功耗设备->err', err.errno);this.setData({connected_ly: false,ly_text: '连接失败'})}})this.stopBluetoothDevicesDiscovery();},/*** 第六步 停止搜寻附近的蓝牙外围设备* @param {蓝牙连接成功关闭监听搜索}* @param {蓝牙搜索比较消耗资源}*/stopBluetoothDevicesDiscovery() {wx.stopBluetoothDevicesDiscovery({complete: () => {console.log('停')this.data.discoveryStarted = false}})},/*** 第七步 断开与蓝牙低功耗设备的连接* @param {蓝牙连接成功关闭搜索}* @param {功能}*/closeBLEConnection(e) {wx.closeBLEConnection({deviceId: e.deviceId})this.connected_ly = false;},/*** 第八步  获取蓝牙低功耗设备所有服务* @param {蓝牙功能查询}* @param {蓝牙连接成功后}* @param {找到主要服务功能}*/getBLEDeviceServices(deviceId) {wx.getBLEDeviceServices({deviceId,success: (res) => {for (let i = 0; i < res.services?.length; i++) {//该服务是否为主服务if (res.services[i].isPrimary) {this.getBLEDeviceCharacteristics(deviceId, res.services[i].uuid);return}}}})},/*** 第九步 获取蓝牙低功耗设备某个服务中所有特征 * @param {蓝牙功能特征查询}* @param {主要功能的特性}* @param {找到主要服务功能的特征}* @param {到此步骤连接结束}*/getBLEDeviceCharacteristics(deviceId, serviceId) {//获取蓝牙低功耗设备某个服务中所有特征 (characteristic)// read	boolean	该特征是否支持 read 操作// write	boolean	该特征是否支持 write 操作// notify	boolean	该特征是否支持 notify 操作// indicate	boolean	该特征是否支持 indicate 操作// writeNoResponse	boolean	该特征是否支持无回复写操作// writeDefault	boolean	该特征是否支持有回复写操作let name = this.data.namewx.getBLEDeviceCharacteristics({deviceId,serviceId,success: res => {console.log('获取蓝牙低功耗设备某个服务中所有特征 (characteristic)->res:', res)for (let i = 0; i < res.characteristics?.length; i++) {const item = res.characteristics[i]if (item.properties.write) {this.setData({canWrite: true})console.log('可以连接')this._deviceId = deviceIdthis._serviceId = serviceIdthis._characteristicId = item.uuidwx.setStorage({key: "BlueKey",data: {_close: true,_name: name,_deviceId: deviceId,_serviceId: serviceId,_characteristicId: item.uuid,}})//pringthis.writeBLECharacteristicValue()break;}}setTimeout(() => {if (this.data.canWrite) {this.setData({connected_ly: true,ly_text: '已连接'})} else {wx.showToast({icon: 'error',title: '您当前选择的设备不支持打印功能,请重新选择!',duration: 3000})}}, 1000)},fail: (res) => {console.error('获取蓝牙特征失败', res)}})},/*** 第十步 编写蓝牙需要打印的内容* @param {编写蓝牙需要打印的内容}* @param {打印按钮的事件}* @param {打印功能前准备}*/writeBLECharacteristicValue() {let pd = {client: '测试',name: '张三',sex: '男',iPhone: '18888888888',idcard: '888888888888888888',}var that = thissetTimeout(() => {let printerJobs = new PrinterJobs();let dayun1 = '打印机自检' + pd?.contactinfo?.client + '\r\n' +'姓名:' + pd?.name + '\r\n' +'性别:' + pd?.sex + '\r\n' +'联系方式:' + pd?.iPhone + '\r\n' +'身份证号码:' + pd?.idcard + '\r\n'printerJobs.setSize(2, 2).setAlign('CT').print('! 0 100 203 100 1\r\n法决定书\r\nPRINT\r\n').setSize(1, 1).setAlign('LT').print(dayun1)let buffer = printerJobs.buffer();// console.log('ArrayBuffer', 'length: ' + buffer.byteLength, ' hex: ' + this.ab2hex(// 	buffer));// 1.并行调用多次会存在写失败的可能性// 2.建议每次写入不超过20字节// 分包处理,延时调用const maxChunk = 20;const delay = 20;for (let i = 0, j = 0, length = buffer.byteLength; i < length; i += maxChunk, j++) {let subPackage = buffer.slice(i, i + maxChunk <= length ? (i + maxChunk) : length);setTimeout(this._writeBLECharacteristicValue, j * delay, subPackage);}// this.lanyardShow = false;// this.$refs.uUpload.clear();// this.clearFormData();wx.showToast({title: '打印成功',icon: 'success'})}, 5000)},/*** 第十一步* @param {最终的打印}* @param {由第十步骤调用}* @param {轮询打印}* @param {打印机输出}* @param {打印结束}*/_writeBLECharacteristicValue(buffer) {wx.writeBLECharacteristicValue({deviceId: this._deviceId,serviceId: this._serviceId,characteristicId: this._characteristicId,value: buffer,success(res) {console.log('打印成功->res:', res)},fail(res) {console.log('打印失败', res)}})},/*** 第十二步* @param {蓝牙相关事件}* @param {和以上打印不衔接}* @param {关闭蓝牙}*/closeBluetoothAdapter() {wx.closeBluetoothAdapter()this.data.discoveryStarted = false},/*** 第十三步* @param {判断蓝牙是否已经连接}* @param {只支持wx. 不支持wx.}* @param {只支持安卓, 不支持苹果}*/isBluetoothDevicePaired() {var that = thiswx.isBluetoothDevicePaired({deviceId: wx.getStorageSync("BlueKey")?._deviceId,success(res) {console.log(res, "判断连接成功")that.setData({connected_ly: true,ly_text: '连接成功'})},fail(err) {console.log(err, "判断连接失败");that.setData({ly_text: '点击搜索'})}})},/*** 第十四步* @param {蓝牙相关资源事件}* @param {搜索 资源 打印}* @param {转换}*/inArray(arr, key, val) {for (let i = 0; i < arr.length; i++) {if (arr[i][key] === val) {return i}}return -1},ab2hex(buffer) { // ArrayBuffer转16进度字符串示例const hexArr = Array.prototype.map.call(new Uint8Array(buffer),function (bit) {return ('00' + bit.toString(16)).slice(-2)})return hexArr.join(',')},str2ab(str) {let buffer = new ArrayBuffer(str?.length)let dataView = new DataView(buffer)for (let i = 0; i < str?.length; i++) {dataView.setUint8(i, str?.charAt(i).charCodeAt(0))}return buffer;},/*** 第十五步* @param {进入页面就自动连接}* @param {该方法存在BUG}* @param {目前该方法先不投放使用}*/createBLEConnectionWithDeviceId(e) {//创建蓝牙链接wx.openBluetoothAdapter({success: (res) => {let ly_data = {name: wx.getStorageSync("BlueKey")?._deviceId,deviceId: wx.getStorageSync("BlueKey")?._name}this._createBLEConnection(ly_data);},fail: (res) => {if (res.errCode === 10001) {wx.showModal({title: '错误',content: '未找到蓝牙设备, 请打开蓝牙后重试。',showCancel: false});this.connected_ly = false} else if (res.errCode === -1 || res.errCode === 10010) { //已连接this.data.connected_ly = true;}}})},/*** 第十六步* @param {获取蓝牙适配状态}* @param {在蓝牙连接成功后调用查看}* @param {判断连接用}*/getBluetoothAdapterState() {wx.getBluetoothAdapterState({success: (res) => {console.log(res)if (res.available) {this.data.connected_ly = truethis.data.ly_text = "已连接"console.log("蓝牙已经连接", res)} else {this.connected_ly = false;this.data.ly_text = "点击连接"console.log("蓝牙已经断开")}}})},})

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.rhkb.cn/news/381796.html

如若内容造成侵权/违法违规/事实不符,请联系长河编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Docker核心技术:Docker原理之Namespace

云原生学习路线导航页&#xff08;持续更新中&#xff09; 本文是 Docker核心技术 系列文章&#xff1a;Docker原理之Namespace&#xff0c;其他文章快捷链接如下&#xff1a; 应用架构演进容器技术要解决哪些问题Docker的基本使用Docker是如何实现的 Docker核心技术&#xff1…

设计模式思想

设计模式思想 1. 理论2. 结构型模式——更优雅的声明和构建对象2.1 适配器模式——将一个类的接口适配成用户所期待的类2.2 代理模式——创建一个代理对象劫持对目标对象的调用&#xff0c;为目标访问增加一层控制和拦截&#xff0c;将控制逻辑和主逻辑隔离2.3 装饰器模式——在…

017、Vue动态tag标签

文章目录 1、先看效果2、代码 1、先看效果 2、代码 <template><div class "tags"><el-tag size"medium"closable v-for"item,index in tags":key"item.path":effect"item.title$route.name?dark:plain"cl…

【中项】系统集成项目管理工程师-第4章 信息系统架构-4.3应用架构

前言&#xff1a;系统集成项目管理工程师专业&#xff0c;现分享一些教材知识点。觉得文章还不错的喜欢点赞收藏的同时帮忙点点关注。 软考同样是国家人社部和工信部组织的国家级考试&#xff0c;全称为“全国计算机与软件专业技术资格&#xff08;水平&#xff09;考试”&…

安卓系统签名的制作与使用(SignApk.jar)踩坑记录

看到这里的你应该能区分apk签名跟系统签名吧,如果无法区分的请看下面链接 android 应用的证书签名跟系统签名 看过上面的文章应该知道系统签名需要的文件清单大概有哪些 前两个是编译安卓系统时在build目录下,详细目录为 /build/target/product/security 每组签名用途不同&am…

Godot学习笔记2——GDScript变量与函数

目录 一、代码编写界面 二、变量 三、函数 四、变量的类型 Godot使用的编程语言是GDS&#xff0c;语法上与python有些类似。 一、代码编写界面 在新建的Godot项目中&#xff0c;点击“创建根节点”中的“其他节点”&#xff0c;选择“Node”。 点击场景界面右上角的绿色…

ISP代理和双ISP代理:区别和优势

随着互联网技术的不断发展和普及&#xff0c;网络代理服务成为众多用户保护隐私、提高网络性能、增强安全性的重要工具。其中&#xff0c;ISP代理和双ISP代理是两种常见的网络代理服务形式。本文将详细探讨ISP代理和双ISP代理的区别和优势&#xff0c;以便用户更好地了解并选择…

真实测评,霍尼韦尔、希喂、352宠物空气净化器性能对比

在快节奏的社会生活中&#xff0c;人们越来越注重精神需要&#xff0c;许多年轻人纷纷选择拥抱宠物&#xff0c;作为生活中的温馨伴侣。宠物们治愈心灵的同时也要付出一定“代价”&#xff0c;日常养护&#xff0c;如清理猫毛、管理气味以及保持宠物环境的清洁&#xff0c;都是…

开源发票识别InvoiceNet项目Windows部署踩坑记(1)

今天安装在github上的InvoiceNet开源项目&#xff0c;准备对它进行测试&#xff0c;安装过程出现了一些问题&#xff0c;做个记录&#xff0c;给遇到兄弟爬坑。 第一个问题&#xff0c;conda的问题&#xff0c; 这是另外一个包管理器&#xff0c;不仅仅可以管理python的虚拟…

UFO:革新Windows操作系统交互的UI聚焦代理

人工智能咨询培训老师叶梓 转载标明出处 人机交互的便捷性和效率直接影响着我们的工作和生活质量。尽管现代操作系统如Windows提供了丰富的图形用户界面&#xff08;GUI&#xff09;&#xff0c;使得用户能够通过视觉和简单的点击操作来控制计算机&#xff0c;但随着应用程序功…

IP第一次综合实验

一、实验拓扑 二、实验要求 1、R6为ISP&#xff0c;接口IP地址均为公有地址&#xff0c;该设备只能配置地址之后不能冉对其进行任何配置 2、R1-R5为局域网&#xff0c;私有Ip地址192.168.1.0/24&#xff0c;请合理分配 3、R1、82、R4&#xff0c;各有两个环回IP地址;R5,R6各…

Linux、Windows和macOS上使用Telnet

文章目录 LinuxWindowsmacOS 在Linux、Windows和macOS上使用Telnet时&#xff0c;不同的系统有不同的工具和设置方法。以下是在这些系统上使用Telnet的简要说明&#xff1a; Linux 在Linux上&#xff0c;Telnet通常是通过telnet命令来使用的。首先&#xff0c;你需要确保你的系…

Ubuntu 24.04 LTS Noble安装 FileZilla Server

FileZilla Server 是一款使用图形用户界面快速创建 FTP 服务器的软件。它有助于测试需要 FTP 服务器功能的各种项目。虽然早期的 FileZilla FTP 服务器仅适用于 Windows 和 macOS&#xff0c;但现在我们也可以在 Linux&#xff08;例如 Ubuntu 24.04&#xff09;上安装 FileZil…

解决Visual studio内报错信息:MSB8036:找不到 Windows SDK 版本问题

问题描述&#xff1a; 找不到WindowsSDK版本&#xff0c;请安装所需版本的Windows SDK&#xff0c;或者在项目属性页中通过右键单击解决方案并选择“重定解决方案目标”来更改SDK版本。 首先&#xff0c;如果你尝试了以下两种方法&#xff1a; &#xff08;1&#xff09;重新…

43 华三AC登录Web页面

一 无线上WEB页面 1 创建vlan 56 [AC-KongZhi]vlan 56 2 退出 [AC-KongZhi-vlan56]quit 3 进入vlan三层口 配置IP地址 [AC-KongZhi]interface Vlan-interface 56 [AC-KongZhi-Vlan-interface56]ip address 192.168.56.55 24 4 在AC控制器与Host主机的接口上能通关vlan 5…

【人工智能】使用Python的dlib库实现人脸识别技术

&#x1f525; 个人主页&#xff1a;空白诗 文章目录 一、引言二、传统人脸识别技术1. 基于几何特征的方法2. 基于模板匹配的方法3. 基于统计学习的方法 三、深度学习在脸识别中的应用1. 卷积神经网络&#xff08;CNN&#xff09;2. FaceNet和ArcFace 四、使用Python和dlib库实…

56 网络层

本节重点 理解网络层的作用&#xff0c;深入理解IP协议的基本原理 对整个TCP/IP协议有系统的理解 对TCP/IP协议体系下的其他重要协议和技术有一定的了解 目录 前置认识ip协议基本概念协议头格式网段划分特殊的ip地址ip地址的数量限制私有ip和公有ip路由路由表生成算法 在复杂…

【专题】百度萝卜快跑体验:Robotaxi发展现状与展望报告合集PDF分享(附原数据表)

原文链接&#xff1a; https://tecdat.cn/?p37054 百度“萝卜快跑”近期因事故与抵制引发关注&#xff0c;武汉部署超300辆全无人驾驶车。体验显示其安全但策略保守&#xff0c;行驶效率低于人类司机&#xff0c;价格亲民。阅读原文&#xff0c;获取专题报告合集全文&#xf…

力扣高频SQL 50题(基础版)第六题

文章目录 1378. 使用唯一标识码替换员工ID题目说明思路分析实现过程结果截图总结 1378. 使用唯一标识码替换员工ID 题目说明 Employees 表&#xff1a; ---------------------- | Column Name | Type | ---------------------- | id | int | | name | varchar | ------…

PWM再理解(1)

前言 昨天过于劳累&#xff0c;十点睡觉&#xff0c;本来想梳理一下PWM&#xff0c;今天补上。 PWM内涵 PWM全称&#xff1a;Pulse Width Modulation&#xff0c;也就是脉宽调制的意思&#xff0c;字面意思理解就是对脉冲的宽度进行改变。准确就是通过数字输出对模拟电路进行…