如何使用BluetoothSerial在ionic上打开现金抽屉

时间:2018-12-28 00:08:17

标签: cordova ionic-framework ionic2 ionic3

请帮助我,如何使用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)
      });
 }

0 个答案:

没有答案