xiaokuaisong-shopapp/uniapp05/components/gprint/esc.js

1116 lines
24 KiB
JavaScript
Raw Normal View History

2024-10-18 08:05:19 +00:00
import encode from '../gprint/encoding.js'
import { TextEncoder } from 'text-encoding';
const app = getApp({
allowDefault: true
})
var jpPrinter = {
createNew: function() {
var jpPrinter = {};
var data = [];
var bar = ["UPC-A", "UPC-E", "EAN13", "EAN8", "CODE39", "ITF", "CODABAR", "CODE93", "CODE128"];
jpPrinter.name = "蓝牙打印机";
/**
* ESC @ 初始化打印机
* 清除打印缓冲区数据打印模式被设为上电时的默认值模式
*/
jpPrinter.init = function() {
data.push(27);
data.push(64);
};
/**
*LF 打印并换行
*将打印缓冲区中的数据打印出来并且按照当前行间距把打印纸向前推进一行
*/
jpPrinter.setPrint = function() {
data.push(10);
};
/**
* ESC J 打印并走纸n 个单位
* 打印缓冲区数据并走纸[n × 纵向或横向移动单位]英寸
*/
jpPrinter.setPrintAndFeed = function(n) {
data.push(27);
data.push(74);
data.push(n);
};
/**
* ESC d 打印并走纸n
* 打印缓冲区里的数据并向前走纸n 字符行
*/
jpPrinter.setPrintAndFeedRow = function(n) {
data.push(27);
data.push(100);
data.push(n);
};
/**
* HT 水平定位
*移动打印位置到下一个水平定位点的位置
*/
jpPrinter.setHorTab = function() {
data.push(9);
};
/**
* ESC $ 设置绝对打印位置
* 将当前位置设置到距离行首nL + nH × 256×横向或纵向移动单位
* 传入参数为点数
* 1mm=8dot
*/
jpPrinter.setAbsolutePrintPosition = function(where) {
data.push(27);
data.push(36);
data.push(parseInt(where % 256));
data.push(parseInt(where / 256));
};
/**
* ESC \ 设置相对横向打印位置
* 以横向或纵向移动单位设置横向相对位移
* 传入参数为点数
* 1mm=8dot
*/
jpPrinter.setRelativePrintPositon = function(where) {
//设置相对横向打印位置
data.push(27);
data.push(92);
data.push(parseInt(where % 256));
data.push(parseInt(where / 256));
};
/**
* ESC a 选择对齐方式
* 使所有的打印数据按某一指定对齐方式排列
* n 的取值与对齐方式对应关系如下
* 当n 为0 左对齐
* 当n 为1 中间对齐
* 当n 为2 右对齐
*/
jpPrinter.setSelectJustification = function(which) {
data.push(27);
data.push(97);
data.push(which);
};
/**
* GS L 设置左边距
* 传入参数为点数
* 1mm=8dot
*/
jpPrinter.setLeftMargin = function(n) {
data.push(29);
data.push(76);
data.push(parseInt(n % 256));
data.push(parseInt(n / 256));
};
/**
* GS W 设置打印区域宽度
* 传入参数为点数
* 1mm=8dot
*/
jpPrinter.setPrintingAreaWidth = function(width) {
data.push(29);
data.push(87);
data.push(parseInt(width % 256));
data.push(parseInt(width / 256));
};
/**
* GS P 设置横向和纵向移动单位
* 传入参数为点数
* 1mm=8dot
*/
jpPrinter.setHorizontalAndVertical = function(x, y) {
data.push(29);
data.push(80);
data.push(x);
data.push(y);
};
/**
* DLE DC4 实时产生钱箱开启脉冲
* 在指定的钱箱插座引脚产生设定的开启脉冲引脚由m 指定
m 连接引脚
0 钱箱插座引脚2
1 钱箱插座引脚5
* 脉冲高电平时间为[t × 100 ms]低电平的时间为[t × 100 ms]
*/
jpPrinter.setCashboxPulse = function(n, m, t) {
data.push(16);
data.push(20);
data.push(n);
data.push(m);
data.push(t);
};
/**
* ESC c 3 选择打印纸传感器以输出缺纸信号
* 传入参数说明
* 当n 为0 关闭纸将尽传感器
* 当n 为1 开启纸将尽传感器
* 当n 为2 开启纸将尽传感器
* 当n 为3 开启纸尽传感器
* 当n 为4 开启纸尽传感器
*/
jpPrinter.setPrintPageSignal = function(n) {
data.push(27);
data.push(99);
data.push(51);
data.push(n);
};
/**
* ESC c 4 选择打印纸传感器以停止打印
* 传入参数说明
* 当n 为0 禁止纸将尽传感器
* 当n 为1 允许纸将尽传感器
* 当n 为2 允许纸将尽传感器
*/
jpPrinter.setSensorToStopPrint = function(n) {
data.push(27);
data.push(99);
data.push(52);
data.push(n);
};
/**
* ESC c 5 允许/禁止按键
* 允许/禁止按键
* 传入参数说明
* 当n 为0 按键起作用
* 当n 为1 按键被禁止
*/
jpPrinter.setSelectKey = function(n) {
data.push(27);
data.push(99);
data.push(53);
data.push(n);
};
/**
* ESC p 产生钱箱控制脉冲
* 输出由t1 和t2 设定的钱箱开启脉冲到由m 指定的引脚
* 传入参数说明
* 当m 为0 钱箱插座的引脚2
* 当m 为1 钱箱插座的引脚5
*/
jpPrinter.setCashCashboxPulse = function(m, t1, t2) {
data.push(27);
data.push(112);
data.push(m);
data.push(t1);
data.push(t2);
};
/**
* ESC = 选择打印机
* 选择打印机被选择的打印机可以接收主计算机发送的数据
* 传入参数说明
* 当n 为0 打印机禁止
* 当n 为1 打印机允许
*/
jpPrinter.setSelectPrinter = function(n) {
data.push(27);
data.push(112);
data.push(n);
};
/**
* ESC 2 设置默认行间距
*选择默认行间距
*/
jpPrinter.setDefaultLineSpace = function() {
data.push(27);
data.push(50);
};
/**
* ESC 3 设置行间距
* 传入参数为点数
* 1mm=8dot
*/
jpPrinter.setLineSpace = function(n) {
data.push(27);
data.push(51);
data.push(n);
};
/**
* ESC SP 设置字符右间距
* 传入参数为点数
* 1mm=8dot
*/
jpPrinter.setCharacterRightSpace = function(n) {
data.push(27);
data.push(32);
data.push(n);
};
/**
* ESC ! 选择打印模式
* 传入参数说明
* 根据n 的值设置字符打印模式
*/
jpPrinter.setPrintMode = function(mode) {
//设置打印模式
data.push(27);
data.push(33);
data.push(mode);
};
/**
* ESC % 选择/取消用户自定义字符
* 当n 为0 不使用用户自定义字符
* 当n 为1 使用用户自定义字符
*/
jpPrinter.setUserDefinitionCharacter = function(n) {
data.push(27);
data.push(37);
data.push(n);
};
/**
* ESC 选择/取消下划线模式
* 传入参数说明
* 当n 为0 取消下划线模式
* 当n 为1 选择下划线模式1 点宽
* 当n 为2 选择下划线模式2 点宽
*/
jpPrinter.setUnderlineMode = function(n) {
data.push(27);
data.push(45);
data.push(n);
};
/**
* ESC ? 取消用户自定义字符
* 传入参数说明
* 取消用户自定义字符中代码为n 的字符取消后此字符使用内部字库
*/
jpPrinter.setCancleUserDefinitionCharacter = function(n) {
data.push(27);
data.push(63);
data.push(n);
};
/**
* ESC E 选择/取消加粗模式
* 传入参数说明
* 当n 为0 取消加粗模式
* 当n 为1 选择加粗模式
*/
jpPrinter.setBoldMode = function(n) {
data.push(27);
data.push(69);
data.push(n);
};
/**
* ESC G 选择/取消双重打印模式
*传入参数说明
* 当n 位为0 取消双重打印模式
* 当n 位为1 选择双重打印模式
*/
jpPrinter.setDoublePrintMode = function(n) {
data.push(27);
data.push(71);
data.push(n);
};
/**
* ESC M 选择字体
* 传入参数说明
* 当n 位为0 选择标准ASCII 码字体(12 × 24)
* 当n 位为1 选择压缩ASCII 码字体(9 × 17))
*/
jpPrinter.setSelectFont = function(n) {
data.push(27);
data.push(77);
data.push(n);
};
/**
* ESC R 选择国际字符集
* 传入参数说明
* 当n 位为0 选择美国默认
* 当n 位为1 选择法国
* 当n 位为2 选择德国
* 当n 位为3 选择英国
* 当n 位为4 选择丹麦I
* 当n 位为5 选择瑞典
* 当n 位为6 选择意大利
* 当n 位为7 选择西班牙I
* 当n 位为8 选择日本
* 当n 位为9 选择挪威
* 当n 位为10 选择丹麦II
* 当n 位为11 选择西班牙II
* 当n 位为12 选择拉丁美洲
* 当n 位为13 选择韩国
* 当n 位为14 选择斯洛维尼亚/克罗帝亚
* 当n 位为15 选择中国
*/
jpPrinter.setInternationalCharacters = function(n) {
data.push(27);
data.push(82);
data.push(n);
};
/**
* ESC V 选择/取消顺时针旋转90
* 传入参数说明
* 当n 位为0 取消顺时针旋转90 度模式
* 当n 位为1 选择顺时针旋转90 度模式
*/
jpPrinter.setRotate90 = function(n) {
data.push(27);
data.push(86);
data.push(n);
};
/**
* ESC t 选择字符代码页
* 传入参数说明
* 当n 位为0 选择PC437 [美国欧洲标准]默认
* 当n 位为1 选择日文片假名
* 当n 位为2 选择PC850 [多语言]
* 当n 位为3 选择PC860 [葡萄牙语]
* 当n 位为4 选择PC863 [加拿大-法语]
* 当n 位为5 选择PC865 [北欧]
* 当n 位为6 选择West Europe
* 当n 位为7 选择Greek
* 当n 位为8 选择Hebrew
* 当n 位为9 选择PC755:East Europe
* 当n 位为10 选择Iran
*
* 当n 位为16 选择WPC1252
* 当n 位为17 选择PC866:Cyrillice*2
* 当n 位为18 选择PC852:Latin2
* 当n 位为19 选择PC858
* 当n 位为20 选择Inrall
* 当n 位为21 选择Latvian
* 当n 位为22 选择Arabic
* 当n 位为23 选择PT151,1251
* 当n 位为24 选择PC747
* 当n 位为25 选择WPC1257
*
* 当n 位为27 选择Vietnam
* 当n 位为28 选择PC864
* 当n 位为29 选择PC1001
* 当n 位为30 选择Uygur
*
* 当n 位为255 选择Uygur
* 打印机支持代码页请以打印机自检测试页为准
*/
jpPrinter.setCodePage = function(n) {
data.push(27);
data.push(116);
data.push(n);
};
/**
* ESC { 选择/取消倒置打印模式
* 传入参数说明
* 当n 位为0 选择PC437 [美国欧洲标准]默认
* 当n 位为1 选择日文片假名
*/
jpPrinter.setInvertPrintMode = function(n) {
data.push(27);
data.push(123);
data.push(n);
};
/**
* GS ! 选择字符大小
* 传入参数说明
*1 纵向放大倍数 81 横向放大倍数 8
*一个byte 有8 用0 到2 位选择字符高度4 到6 位选择字符宽度
* 当n 位为0 正常
* 当n 位为16 2倍宽
* 当n 位为32 3倍宽
* 当n 位为48 4倍宽
* 当n 位为64 5倍宽
* 当n 位为80 6倍宽
* 当n 位为96 7倍宽
* 当n 位为112 8倍宽
*
* 当n 位为16 2倍高
* 当n 位为32 3倍高
* 当n 位为48 4倍高
* 当n 位为64 5倍高
* 当n 位为80 6倍高
* 当n 位为96 7倍高
* 当n 位为112 8倍高
* 若需要倍宽倍高请在同等倍数下相加 如17为倍宽倍高
*/
jpPrinter.setCharacterSize = function(n) {
data.push(29);
data.push(33);
data.push(n);
};
/**
* GS B 选择/取消黑白反显打印模式
* 传入参数说明
* 当n 位为0 取消反显打印
* 当n 位为1 选择反显打印
*/
jpPrinter.setReverseMode = function(n) {
data.push(29);
data.push(66);
data.push(n);
};
function convertPartialToBitmap(w, start_y, bith, pitch, res) {
console.log('convert bitmap: ' + w + ', ' + start_y + ', ' + bith + ', ' + pitch);
var bits = new Uint8Array(bith * pitch);
data.push(29); // 0x1D
data.push(118); // 0x76
data.push(48); // 0x30
data.push(0); // 0x00
data.push(parseInt(pitch % 256));
data.push(parseInt(pitch / 256));
data.push(parseInt(bith % 256));
data.push(parseInt(bith / 256));
for (var y = 0; y < bith; y++) {
for (var x = 0; x < w; x++) {
var color = res.data[((y + start_y) * w + x) * 4];
if (color < 128) {
bits[parseInt(y * pitch + x / 8)] |= 0x80 >> x % 8;
}
}
}
for (var i = 0; i < bits.length; i++) {
data.push(bits[i]);
}
}
/*
单色图片转成多张bitmap, 高度按BLOCK_SIZE拆分图片
*/
function convertToMultiBitmap(res) {
var w = res.width;
var h = res.height;
const BLOCK_SIZE = 128;
var pitch = parseInt((w + 7) / 8);
var block = parseInt((h + BLOCK_SIZE - 1) / BLOCK_SIZE);
console.log(w + "--" + h);
for (var i = 0; i < block; i++) {
var bith = BLOCK_SIZE;
if (i * BLOCK_SIZE + bith > h) {
bith = h - i * BLOCK_SIZE;
}
convertPartialToBitmap(w, i * BLOCK_SIZE, bith, pitch, res);
}
console.log(data);
}
/*
单色图片整图转成一张bitmap
*/
function convertToSingleBitmap(res) {
console.log(res);
var w = res.width;
var h = res.height;
var bitw = parseInt((w + 7) / 8) * 8;
var bith = h;
var pitch = parseInt(bitw / 8);
var bits = new Uint8Array(bith * pitch);
console.log(w + "--" + h);
console.log("bitw=" + bitw + ", bith=" + bith + ", pitch=" + pitch);
data.push(29); // 0x1D
data.push(118); // 0x76
data.push(48); // 0x30
data.push(0); // 0x00
data.push(parseInt(pitch % 256));
data.push(parseInt(pitch / 256));
data.push(parseInt(bith % 256));
data.push(parseInt(bith / 256));
console.log(res.data.length);
for (var y = 0; y < h; y++) {
for (var x = 0; x < w; x++) {
var color = res.data[(y * w + x) * 4];
if (color < 128) {
bits[parseInt(y * pitch + x / 8)] |= 0x80 >> x % 8;
}
}
}
for (var i = 0; i < bits.length; i++) {
data.push(bits[i]);
}
}
/**
* GS v 0 打印光栅位图
*
*/
jpPrinter.setBitmap = function(res) {
//参数,画布的参数
console.log(res);
convertToSingleBitmap(res); // 转成单张位图
//convertToMultiBitmap(res) // 转成多张位图
console.log(data);
};
/**
* GS H 选择HRI 字符的打印位置
* 传入参数说明
* 当n 位为0 不打印
* 当n 位为1 条码上方
* 当n 位为2 条码下方
* 当n 位为3 条码上下方
*/
jpPrinter.setHRIPosition = function(position) {
data.push(29);
data.push(72);
data.push(position);
};
/**
* GS f 选择HRI 使用字体
* 传入参数说明
* 当n 位为0 标准ASCII 码字符(12 × 24)
* 当n 位为1 压缩ASCII 码字符(9 × 17)
*/
jpPrinter.setHRIFont = function(font) {
data.push(29);
data.push(102);
data.push(font);
};
/**
* GS h 选择条码高度
* 传入参数说明
* 2 n 6
*/
jpPrinter.setBarcodeWidth = function(width) {
data.push(29);
data.push(119);
if (width > 6) {
width = 6;
}
if (width < 2) {
width = 1;
}
data.push(width);
};
/**
* GS h 选择条码高度
* 传入参数说明
* 1 n 255
*/
jpPrinter.setBarcodeHeight = function(height) {
data.push(29);
data.push(104);
data.push(height);
};
/**
* 打印条码128类型
*/
jpPrinter.setCode128 = function(content) {
// data.push(29);
// data.push(107);
// data.push(73);
// var code = new encode.TextEncoder('gb18030', {
// NONSTANDARD_allowLegacyEncoding: true
// }).encode(content);
// data.push(code.length);
// for (var i = 0; i < code.length; ++i) {
// data.push(code[i]);
// }
};
/**
* 打印条码
* 传入参数说明
* t:条码类型
* content内容
*/
jpPrinter.setBarcodeContent = function(t, content) {
var ty = 73;
data.push(29);
data.push(107);
switch (t) {
case bar[0]:
ty = 65;
break;
case bar[1]:
ty = 66;
break;
case bar[2]:
ty = 67;
break;
case bar[3]:
ty = 68;
break;
case bar[4]:
ty = 69;
break;
case bar[5]:
ty = 70;
break;
case bar[6]:
ty = 71;
break;
case bar[7]:
ty = 72;
break;
case bar[8]:
ty = 73;
break;
}
data.push(ty);
data.push(content);
};
/**
* FS ! 设置汉字字符模式
* 传入参数说明
* 当n 位为0 取消倍宽倍高取消下划线
* 当n 位为4 选择倍宽
* 当n 位为8 选择倍高
* 当n 位为128 选择下划线
*/
jpPrinter.setChineseCharacterMode = function(n) {
data.push(28);
data.push(33);
data.push(n);
};
/**
* FS & 选择汉字模式
*/
jpPrinter.setSelectChineseCharacter = function() {
data.push(28);
data.push(38);
};
/**
* FS . 取消汉字模式
*/
jpPrinter.setCancelChineseCharacter = function() {
data.push(28);
data.push(46);
};
/**
* FS - 选择/取消汉字下划线模式
* 传入参数说明
* 当n 位为0 取消汉字下划线
* 当n 位为1 选择汉字下划线1 点宽
* 当n 位为2 选择汉字下划线2 点宽
*/
jpPrinter.setCancelUnderLine = function(n) {
data.push(28);
data.push(45);
data.push(n);
};
/**
* FS S 设置汉字字符左右间距
* 传入参数说明
* 分别将汉字的左间距和右间距设置为n1 和n2
* 传入点数1mm=8dot
*/
jpPrinter.setChineseCharacterSpace = function(n1, n2) {
data.push(28);
data.push(83);
data.push(n1);
data.push(n2);
};
/**
* FS W 选择/取消汉字倍高倍宽
* 当n 的最低位为0取消汉字倍高倍宽模式
* 当n 的最低位为1选择汉字倍高倍宽模式
*/
jpPrinter.setChineseCharacteHeightWidth = function(n) {
data.push(28);
data.push(87);
data.push(n);
};
/**
* GS ( F 设置黑标定位偏移量
* 该命令用于选择黑标定位控制允许且设置切/撕纸位置或起始打印位置相对于黑标检测的偏移值该值以点数计算
* p
* 传入点数
*
* a = 1, 2;
* a=1:设置起始打印位置相对于黑标检测位置的偏移量
* a=2:设置切/撕纸位置相对于黑标检测位置的偏移量
*
* m = 0, 48
* m=0 或48选择偏移量为前进纸方向计算
*
* 0 n 1700
*/
jpPrinter.setBlackMaskOffset = function(p, a, m, n) {
data.push(29);
data.push(40);
data.push(70);
data.push(p % 256);
data.push(p / 256);
data.push(a);
data.push(m);
data.push(n % 256);
data.push(n / 256);
};
/**
* GS FF 设置黑标至打印起始位置
*/
jpPrinter.setBlackMarkStart = function() {
//黑标至打印起始位置
data.push(29);
data.push(12);
};
/**
* GS V 选择切纸模式并切纸
* 半切
*/
jpPrinter.setCutter = function() {
data.push(29);
data.push(86);
data.push(1);
};
/**
* GS V 选择切纸模式并切纸
* 传入参数说明
* 传入点数1mm=8dot
* 进纸n 并且半切纸
*/
jpPrinter.setCut = function(n) {
data.push(29);
data.push(86);
data.push(101);
data.push(n);
};
/**
* ESC B 打印机来单打印蜂鸣提示
* 传入参数说明
* 1 n 9
* 1 t 9
* n 是指蜂鸣器鸣叫次数
* t 是指蜂鸣器鸣每次数鸣叫时间为(t × 50) ms
*/
jpPrinter.setSound = function(n, t) {
//设置蜂鸣器
data.push(27);
data.push(66);
if (n < 0) {
n = 1;
} else if (n > 9) {
n = 9;
}
if (t < 0) {
t = 1;
} else if (t > 9) {
t = 9;
}
data.push(n);
data.push(t);
};
/**
* ESC C 打印机来单打印蜂鸣提示及报警灯闪烁
* 传入参数说明
* 1 m 201 t 200 n 3
*
* m指报警灯闪烁次数或蜂鸣器鸣叫次数
*
* t指报警灯闪烁间隔时间为(t × 50) ms 或蜂鸣器鸣叫间隔时间为(t × 50) ms
*
* 当n = 0 蜂鸣器不鸣叫同时报警灯不闪烁
* 当n = 1 蜂鸣器鸣叫
* 当n = 2 报警灯闪烁
* 当n = 3 蜂鸣器鸣叫同时报警灯闪烁
*/
jpPrinter.setOrderTip = function(m, t, n) {
data.push(27);
data.push(67);
if (m < 0) {
m = 1;
} else if (m > 20) {
n = 20;
}
if (t < 0) {
t = 1;
} else if (t > 20) {
t = 20;
}
if (n < 0) {
n = 1;
} else if (n > 3) {
n = 3;
}
data.push(m);
data.push(t);
data.push(n);
};
/**
* 设置QRCode 模块大小为n dot
* 传入参数说明
* 1 n 15
* [默认值] n = 3
*/
jpPrinter.setSelectSizeOfModuleForQRCode = function(n) {
//设置二维码大小
data.push(29);
data.push(40);
data.push(107);
data.push(3);
data.push(0);
data.push(49);
data.push(67);
if (n > 15) {
n = 15;
}
if (n < 1) {
n = 1;
}
data.push(n);
};
/**
* 选择QRCode 纠错等级
* 传入参数说明
* n 功能 纠错能力
* 48 选择纠错等级 L 7
* 49 选择纠错等级 M 15
* 50 选择纠错等级 Q 25
* 51 选择纠错等级 H 30
*/
jpPrinter.setSelectErrorCorrectionLevelForQRCode = function(n) {
data.push(29);
data.push(40);
data.push(107);
data.push(3);
data.push(0);
data.push(49);
data.push(69);
data.push(n);
};
/**
* 存储QRCode 数据(d1...dk)到符号存储区
*/
jpPrinter.setStoreQRCodeData = function(content) {
// var code = new encode.TextEncoder('gb18030', {
// NONSTANDARD_allowLegacyEncoding: true
// }).encode(content);
// data.push(29);
// data.push(40);
// data.push(107);
// data.push(parseInt((code.length + 3) % 256));
// data.push(parseInt((code.length + 3) / 256));
// data.push(49);
// data.push(80);
// data.push(48);
// for (var i = 0; i < code.length; ++i) {
// data.push(code[i]);
// }
};
/**
* 打印QRCode 条码
*/
jpPrinter.setPrintQRCode = function() {
data.push(29);
data.push(40);
data.push(107);
data.push(3);
data.push(0);
data.push(49);
data.push(81);
data.push(48);
};
/**
* 设置GB18030编码格式文字
*/
jpPrinter.setText = function(content) {
const code = new TextEncoder('gb18030', {
NONSTANDARD_allowLegacyEncoding: true
}).encode(content);
for (var i = 0; i < code.length; ++i) {
data.push(code[i]);
}
};
/**
* 添加用户自定义指令
*/
jpPrinter.setUserCommand = function(content) {
//添加用户指令
data.push(content);
};
jpPrinter.getData = function() {
//获取打印数据
return data;
};
jpPrinter.clearData = function() {
//获取打印数据
if (data.length > 0) {
data.clearData;
}
};
return jpPrinter;
},
Query: function() {
var queryStatus = {};
var buf;
var dateView;
queryStatus.getRealtimeStatusTransmission = function(n) {
//查询打印机实时状态
/*
n = 1传送打印机状态
n = 2传送脱机状态
n = 3传送错误状态
n = 4传送纸传感器状态
*/
buf = new ArrayBuffer(3);
dateView = new DataView(buf);
dateView.setUint8(0, 16);
dateView.setUint8(1, 4);
dateView.setUint8(2, n);
queryStatus.query(buf);
};
queryStatus.query = function(buf) {
uni.writeBLECharacteristicValue({
deviceId: app.globalData.BLEInformation.deviceId,
serviceId: app.globalData.BLEInformation.writeServiceId,
characteristicId: app.globalData.BLEInformation.writeCharaterId,
value: buf,
success: function(res) {},
complete: function(res) {
console.log(res);
buf = null;
dateView = null;
}
});
};
return queryStatus;
}
};
export default jpPrinter;