Open tracesense opened 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?
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)