kechankrisna / flutter_usb_printer

GNU General Public License v3.0
6 stars 50 forks source link

How to cut? #9

Open niyonx opened 2 years ago

niyonx commented 2 years ago

Is there a command to cut?

mrazaimtiaz commented 2 years ago

To cut paper print the following command it works fine with the EPOS printer

await flutterUsbPrinter.printText("\x1B" + "\x6D"); //to cut paper

"\x1B" + "\x6D" is Equvilant to chr(27).chr(109) this command is for EPOS printer to cut paper.