-
Notifications
You must be signed in to change notification settings - Fork 5
Open
Description
I tried a phomemo M200 model and failed. It's bluetooth-connected on Windows and device manager shows it as COM10
Seemed to be feasible by subclassing:
class Printer_serial(Printer):
def __init__(self, port):
self.s = serial.Serial(port)
def _print_bytes(self, bytes):
self.s.write(bytes)
printer = Printer_serial("COM10")
printer.print_text("Hello world")
But all I get is a couple of line feeds. Any idea?
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels