请帮助我,如何使用BluetoothSerial在ionic上打开钱箱,因为我的打印机无法检测是否使用StarPRNT插件。 此使用BluetoothSerial的代码可用于打印。
printDocument() {
var data = "Hello";
this.bluetoothSerial.write(data).then(() => {}, () => {});
}
但是,如果我使用StarPRNT库,则我的设备无法检测到。
cariPrinterStar() {
this.starprnt.portDiscovery('Bluetooth')
.then((res: any) => {
let alert = this.alertCtrl.create({
title : "Msg",
subTitle : JSON.stringify(res),
buttons : ["OK"]
});
alert.present();
})
.catch((error: any) => {
console.error(error)
});
}