Patrick Kanzler

Results 117 comments of Patrick Kanzler

@MicroJoe For Epson there is the website at https://reference.epson-biz.com/modules/ref_escpos/index.php?content_id=2 If you create a login it also has some nice structuring. Maybe this can help?

@MicroJoe this sounds sensible to me. Probably best would be getting #161 merged (this is probably my task) and then building on top of this the "software" tabs. (Would you...

I am also not 100% how hardware tabs work. But as far as I get it, you can set multiples of columns as tab positions before printing. (Iirc you can...

As you can see in this issue, the behavior of hardware tabs has been fixed in #238. You could therefore try issuing tabstops. Apart from that no other relevant changes...

You can pass on arguments that control magic_encode when you are creating the instance of your printer. Issue something like `Usb(0x0416, 0x5011,0, profile="POS-5890", magic_encode_args=PUT THEM HERE)` You can put there...

But only the euro-sign is defective? Does this occur between different calls of the script? Have you tried calling the line with the euro several times? You could swap out...

Usage is something like this: ```python #!/usr/bin/python3 import time from escpos.printer import Dummy p = Dummy(profile="POS-5890") p.magic.force_encoding("CP858") p.set(align=u'left', custom_size=True, width=2, height=2, font=1) for i in range(1,10): p.text("ÄÖÜäöüß €\n") time.sleep(1) print(p.output)...

Hi, I'm sorry but I do not have a display. So I can't really test anything. But you could check the manual of the display: http://www.bixolon.com/upload/download/bcd-1100_command_manual_english_rev_1_00.pdf There are some commands...

Hi, thank you for your contribution. May I ask you please to rebase your commit messages to English? Is this method really necessary? As far as I see it, the...

> Sadly, magic coding module cannot handle Chinese Yes, and that is why it should be patched there :-) I think it is not necessary to change the interface of...