DOC fix example in readme
Example in readme would print only nonsense, because a newline was missing at the end of text
This commit is contained in:
parent
68b3ec4d89
commit
bf3012b882
|
@ -58,7 +58,7 @@ The basic usage is:
|
||||||
|
|
||||||
""" Seiko Epson Corp. Receipt Printer M129 Definitions (EPSON TM-T88IV) """
|
""" Seiko Epson Corp. Receipt Printer M129 Definitions (EPSON TM-T88IV) """
|
||||||
Epson = escpos.Escpos(0x04b8,0x0202,0)
|
Epson = escpos.Escpos(0x04b8,0x0202,0)
|
||||||
Epson.text("Hello World")
|
Epson.text("Hello World\n")
|
||||||
Epson.image("logo.gif")
|
Epson.image("logo.gif")
|
||||||
Epson.barcode('1324354657687','EAN13',64,2,'','')
|
Epson.barcode('1324354657687','EAN13',64,2,'','')
|
||||||
Epson.cut()
|
Epson.cut()
|
||||||
|
|
Loading…
Reference in New Issue