我在使用我的 Android 应用程序使用 Zebra KR403 打印机打印任何东西时遇到问题。
要调试,我尝试使用以下命令打印配置:
String ZPLCommand = new String();
ZPLCommand += "^XA"; // Start command
ZPLCommand += "^MN" + "k";
ZPLCommand += "~WC";
ZPLCommand += "^AF^FDTESTLINE^FS";
ZPLCommand += "^XZ"; // End command
DiscoveredPrinterUsb discoveredPrinterUsb;
Connection conn = discoveredPrinterUsb.getConnection();
conn.open();
ZebraPrinter printer = ZebraPrinterFactory.getInstance(conn);
printer = ZebraPrinterFactory.getInstance(conn);
printer.sendCommand(ZPLCommand);
conn.close();
打印机能够打印大约 80% 的配置(直到校准字段),然后停止……我看到一个闪烁的红色状态 LED。
我曾尝试研究相同但没有任何成功。任何帮助将不胜感激。