Questions tagged [escpos]

A proprietary POS printer command system from EPSON.

A proprietary POS printer command system from EPSON.

320 questions
0
votes
1 answer

python-escpos windows giving "bugtrack_url" error

Trying to install python-escpos library. The instructions say the following: Ensure the library is installed on ${lib_arch}/${python_ver}/site-packages/escpos On CLi you must run: python setup.py build sudo python setup.py install What does…
Ricky T
  • 243
  • 1
  • 13
0
votes
3 answers

Write commande ESC/POS with Bluetooth thermal printer

I try to change the Default code page into PC858 (Multilanguage + Euro) for print the Symbol € . But any ESC/POS command work. So i try to send hex value of command : public void EnvoiCommande(byte donnee) { byte[] array = {donnee}; …
Heavenly
  • 11
  • 1
  • 7
0
votes
2 answers

Print to thermal printer (DPP 450) from Android app

I am developing an Android Java app that uses thermal printers to print delivery notes. Actually I have two printer models that print ok via Bluetooth (using ESC/POS) but when I try to do it with the DPP-450 (which supports ESC/POS ), it connects ok…
Kevin Ruiz
  • 21
  • 5
0
votes
0 answers

Bixolon SPP-R200 command to scroll to black mark

I have a Bixolon SPP-R200 (and an SPP-R200III). I've set the printer to Label Mode. I'm able to print using Standard Mode and the user can move to the top of the next ticket by pressing the feed button on the printer. Is there a command I can send…
Mitkins
  • 4,031
  • 3
  • 40
  • 77
0
votes
2 answers

ESC/POS commands are not recognized by Epson TM-T20II

I am new to the world of ESC/POS. I have an Epson TM-T20II printer USB connected to a Windows 7 desktop. The code below is a sample application obtained from Epson at this link: …
Joe Romaine
  • 11
  • 1
  • 1
0
votes
1 answer

How do I send ESC/POS commands to thermal printer? Is there any terminal or software to send ESC/POS commnds?

I'm working with CSN A1X thermal printer.I want to print graphs like sine wave, triangular wave on thermal printer.How to send ESC/POS commands to thermal printer?I'm sending ESC/POS commands via serial terminal, but it just print text on paper…
0
votes
1 answer

Printer Connection error on escpos-php

From This link(Printing to POS printer from PHP) i started I have use php sample code. my question is my printer is set to default then why i have to connect to printer. anyway i am getting error on connecting printer. as my printer name is in fig1…
Raza Saleem
  • 185
  • 3
  • 16
0
votes
1 answer

Cannot connect to POS printer over TCP 9100

I'm using: Visual Studio 2012 Express, C#, .NET Framework 2.0 POS printer : TYSSO PRP-300, IP:192.168.1.100 I connect successfully to the printer using: C:\> telnet 192.168.1.100 9100 _ Also using: C:\> portqry -n 192.168.1.100 -e 9100 -p TCP TCP…
geek
  • 346
  • 6
  • 14
0
votes
1 answer

How to add user defined character set in Thermal printer using Escape sequence?

I want to add Hindi character set into my Thermal printer (Gprinter Model:GP-U80030I) using escape sequence (ESC/POS). I read Escape commands from program manual. In what sequence I should send commands to printer. Commands to be used are: ESC %…
0
votes
0 answers

How to change getByte to writeString in java

So We Have A Problem with getBytes syntax when we want to change from this format int hours = duration / 3600; int mins = (duration - (hours * 3600))/60; printer.write(new byte[] {ESC, '@', ESC, 0x61, 0x01}); …
Studentofcode
  • 45
  • 1
  • 1
  • 9
0
votes
1 answer

Escpos-php with serial printer

I'm trying to print a QR Code with my Epson TM-T88IV serial printer using php. However, my php file installed on a server and I'm able to call it succesfully from a html file. I'm using a library called ESCPOS-PHP…
afunnydev
  • 13
  • 1
  • 5
0
votes
0 answers

Socket concurrency in Python

i'm working with this library: ESCPOS Printer for Python using the Ethernet class in order to communicate with printer: CLASS ESCPOS ETHERNET I'm trying to execute a lot of calls using simple threads, like above: from time import sleep import…
Symon
  • 673
  • 6
  • 25
0
votes
4 answers

Android ESC/POS protocol printing in Cyrillic

I bought a no-name Android ESC/POS printer, it support Bluetooth. I need help in printing Cyrillic symbols in Windows-1251 charset. What I do first: \x1B\x40 (ESC @ to initialize printer) \xD5\xD3\xC9\n (the text that I need to print, standard…
Carl_F
  • 1
  • 1
  • 2
0
votes
0 answers

Python TCP/IP raw socket

I'm using this python module in order to print to my escpos printer: https://github.com/Simonefardella/escposprinter I want to understand how this part of the module it's working: def open(self): """ Open TCP socket and set it as escpos device…
Symon
  • 673
  • 6
  • 25
0
votes
1 answer

I cannot print thai language on sewoo thermal printer as raw data with php

i am trying to print thai language on thermal printer sewoo SLK-T21EB. I can print english language and i can change font size of english language also with esc/pos commands. But when I try to print thai language it prints something i cannot…