Print Ticket on Bluetooth Zebra Printer

Good afternoon,

I am developing an APP on ionic 3, I want to print on a Zebra printer via Bluetooth, will you be able to help me with the Plugin that I will use?

Thank you very much in advance.

I have the same problem here… did you figure out a solution ?
thanks

I use the zebra (zq520) with plugin cordova-plugin-bluetooth-serial.

How did you do that?
I’m doing this:

this.bluetoothSerial.connect(macAddress).subscribe( () => {
this.bluetoothSerial.write(str).then( () => {
console.log('Ok: );
}, (error) => {
console.log('Error printing: ’ + JSON.stringify(error));
}).catch((error) => {
console.log('Catch printing: ’ + JSON.stringify(error));
});
}, (error) => {
console.log('Error conecting: ’ + JSON.stringify(error));
});

The console shows Ok but nothing is printed…