这里向蓝牙打印机写数据
wx.writeBLECharacteristicValue({
deviceId: deviceId,
serviceId: serviceId,
characteristicId: characteristicId,
value: value,
success: function(res) {
console.log("success 指令发送成功", value);
console.log(res);
},
该转的格式都转了
发送的也是buffer类的
var str = that.Test();
console.log('发送信息:', str);
var buffer = that.hexStringToArrayBuffer(str); //字符串转为ArrayBuffer对象
也返回成功了
可是打印机没反应啊?↓↓↓
(这是手动打出来的打印机测试数据)
求解