We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have a printer model TM T20X from Epson, nothing happens with this function:
(async () => { const model = new Model('TM-T20') const connection = new InMemory() const printer = await Printer.CONNECT(model, connection) await printer.setColumns(56) await printer.write('Simple Text *** ') await printer.writeln('Bold Text -> complete line text.[]123456', Style.Bold) await printer.writeln('Double Height', Style.DoubleHeight | Style.Bold, Align.Center) await printer.writeln('Double Width', Style.DoubleWidth, Align.Center) await printer.writeln('Áçênts R$ 5,00', Style.DoubleWidth | Style.DoubleHeight, Align.Center) await printer.feed(6) await printer.buzzer() await printer.cutter() await printer.drawer(Drawer.First) process.stdout.write(connection.buffer()) })()
The text was updated successfully, but these errors were encountered:
how to debug TM-T20X ?
qrcode is not printing
Sorry, something went wrong.
No branches or pull requests
I have a printer model TM T20X from Epson, nothing happens with this function:
(async () => {
const model = new Model('TM-T20')
const connection = new InMemory()
const printer = await Printer.CONNECT(model, connection)
await printer.setColumns(56)
await printer.write('Simple Text *** ')
await printer.writeln('Bold Text -> complete line text.[]123456', Style.Bold)
await printer.writeln('Double Height', Style.DoubleHeight | Style.Bold, Align.Center)
await printer.writeln('Double Width', Style.DoubleWidth, Align.Center)
await printer.writeln('Áçênts R$ 5,00', Style.DoubleWidth | Style.DoubleHeight, Align.Center)
await printer.feed(6)
await printer.buzzer()
await printer.cutter()
await printer.drawer(Drawer.First)
process.stdout.write(connection.buffer())
})()
The text was updated successfully, but these errors were encountered: