Android Question cut paper in pos

rkmoray

Active Member
Licensed User
Longtime User
I have a POS printer (epson compatible) that does ave the ability to cut the paper after the receipt is printed. But I cannot get it to cut.

I have the tried the following codestrings
with a print command after the command, but it does not seem to cut.

PrintBuffer=Chr(29) & Chr(86) & Chr(48)
PrintBuffer=Chr(29) & Chr(86) & Chr(0)
PrintBuffer= Chr("&H1D") & "V" & Chr(66) & Chr(0)
 

Danie Steyn

Member
Licensed User
Longtime User
For most POS printers I use
B4X:
TextWriter1.Write(Chr(27) & Chr(105) & Chr(0))             
   TextWriter1.Flush
When using a network / lan printer you need to send CRLF after the command.
 
Upvote 0
Top