rtu-dataframe / escposprinter

The most famous ESCPOS printer library, now for Python 3!
7 stars 6 forks source link

Intermec Printer #8

Open tracesense opened 1 year ago

tracesense commented 1 year ago

Hi does this work with intermec?

I am trying this

from escpos.printer import Network

try: kitchen = Network("192.168.1.16") #Printer IP Address kitchen.text("Hello World\n") kitchen.barcode('4006381333931', 'EAN13', 64, 2, '', '') kitchen.cut() print('print sent') except Exception as e: print(e)

Get print sent returned, no errors but nothing to printer. IP address is correct. any ideas?