我只是使用 Nodejs 将 p-touch 模板代码发送到 QL-720NW。
我已经按照如何设置 p-touch 模板的步骤进行操作。
另外,我尝试使用tojocky/node-printer向打印机发送命令。
这是我的代码,
var rawData = new Buffer([
0x1B, 0x69, 0x61, 0x33, // Use p-touch template
0x5E, 0x49, 0x49, // Initialize p-touch template
0x5E, 0x54, 0x53, 0x30, 0x30, 0x31, // Choose template 1
0x5E, 0x46, 0x46 // Start printing
]);
printer.printDirect({
data: rawData
, printer:'Brother QL-720NW' // printer name, if missing then will print to default printer
, type: 'RAW' // type: RAW, TEXT, PDF, JPEG, .. depends on platform
, success:function(jobID){
console.log("sent to printer with ID: "+jobID);
}
, error:function(err){console.log(err);}
});
但是,打印机总是出现故障并闪烁红灯。只需致电兄弟技术支持并搜索技术规范。找不到任何想法。有人知道吗?