python-printer-escpos icon indicating copy to clipboard operation
python-printer-escpos copied to clipboard

Talk to Dot Matrix, Thermal POS printers supporting ESCPOS Specification

Results 7 python-printer-escpos issues
Sort by recently updated
recently updated
newest added

Hi, I've solved 2 issues : - #10 - #6 Now my IP printer works perfectly and prints all steps of your example in readme Printer model : RP80USE

Hello I fond an issue, When I use printer.bold() or printer.doubleWidth() Using getNetworkPrinter ``` Traceback (most recent call last): File "main.py", line 9, in printer.bold(True) File "C:\Python310\lib\site-packages\escpos\commandset\generic.py", line 184, in...

``` from escpos.connections import getNetworkPrinter printer = getNetworkPrinter()(host='***.***.*.*', port=9100) printer.text("Hello World") printer.lf() printer.cut() ``` (I've blanked out my IP address) produces the following error ``` Traceback (most recent call last):...

Trying to define my printer object like this: ``` from escpos.connections import getSerialPrinter printer = getSerialPrinter()(dev='/dev/ttyUSB0', baudrate=9600, bytesize=8, parity=serial.PARITY_NONE, stopbits=serial.STOPBITS_ONE, timeout=1.00, dsrdtr=True) ``` I get the following error: ``` Traceback...

Hey I find no function to increase the size of qr. Please guide me how to increase the size of qr. Thank you

Hello, I do have a cups print server. On this server, multiple printers are configured. Is it possible to print to a certain queue on that print server? Currently I...