You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
320 B
Python
20 lines
320 B
Python
from PIL import Image
|
|
from escpos.printer import Usb
|
|
|
|
p = Usb(0x4b8, 0x0e03) #in_ep=0x82, out_ep=0x01)
|
|
|
|
p.textln("hello world")
|
|
|
|
p.text("hello ")
|
|
|
|
p.text("line!")
|
|
|
|
p.qr("https://chae0.org", size=16, center=True)
|
|
#always put p.ln() before printing an image like, p.image("")
|
|
|
|
p.ln()
|
|
|
|
p.image("images/final.png")
|
|
|
|
p.cut()
|