Epson ESC POS Drawer Kick命令可以控制1个或2个现金抽屉
ESC p m t1 t2
我们想使用WebClientPrint API打开现金抽屉 webclientprint.azurewebsites.net
问题: 打印文本文件时打印机工作正常。 但是当我们给打印机这个命令0x0A0x1B0x700x000x190xFA0x0A 现金抽屉没有打开。
然后我使用另一种方法ESC / POS给打印机。
[AllowAnonymous]
public void PrintCommands(string useDefaultPrinter, string printerName)
{
ClientPrintJob cpj = new ClientPrintJob();
cpj.BinaryPrinterCommands= System.IO.File.ReadAllBytes(Server.MapPath(@"~/App_Data/open.txt"));
cpj.FormatHexValues = true;
cpj.ClientPrinter = new DefaultPrinter();
System.Web.HttpContext.Current.Response.ContentType = "application/octet-stream";
System.Web.HttpContext.Current.Response.BinaryWrite(cpj.GetContent());
System.Web.HttpContext.Current.Response.End();
}
答案 0 :(得分:0)
您是否尝试将t1设置为更大的值(现在您有0x19,即25 x 2毫秒)?