我正在尝试在具有响应本机的蓝牙dpp 350打印机上进行打印。 打印机正在正确打印。但是,每一行的开头都有一个点。
我已经尝试了几种编码以及代码页,但无法在行首删除该点。
我正在使用react-native-bluetooth-escpos-printer库
let config = {
encoding: 'ISO8859_1',
codepage: 1,
widthtimes: 0,
heigthtimes: 0,
fonttype: 1
}
await BluetoothEscposPrinter.printText("Testando impressão!\r\n", config);
await BluetoothEscposPrinter.printText("I need help!\r\n", config);
await BluetoothEscposPrinter.printText("I need help!\r\n", config);
await BluetoothEscposPrinter.printText("I need help!\r\n", config);
await BluetoothEscposPrinter.printText("I need help!\r\n", config);
请,有人知道如何从行首删除此点吗?