Android 现金抽屉命令

Android cash drawer commands

我有一个现金抽屉,我需要使用来自 Android 应用程序的命令打开它。但是我无法正确阅读手册。

这是一组打开抽屉的命令。我正在使用来自互联网的以下代码来实现这一目标。我在命令集上收到错误。请问你们能推荐任何有用的代码来通过按下按钮实现现金抽屉踢开功能吗?还帮我看看说明书。

 final byte[] openCD={27,112,0,60,120};
    String s=new String(openCD);
    commandSet+=s;
    return s;

手动样本

钱箱控制命令

ESC p m n1 n2 Generate pulse n1 n2 rawer control command ASCII ESC p m Decimal 27 112 m Format n1 n2 Hexadecimal 1B 70 m n1 n2

钱箱通过电缆连接到 Android 设备

我得到了这个东西

String file= "/sys/class/gpio/gpio14/value";


writeToFile(file,"1");

writeToFile(file,"0");




public static void writeToFile(String fileName, String data){

    File file = new File("/sys/class/gpio/gpio14/value");
    FileOutputStream outputStream = null;
    try{
        outputStream=new FileOutputStream(file);
        byte [] bytes = data.getBytes();
        outputStream.write(bytes);
        outputStream.close();
    }
    catch(Exception e){
        e.printStackTrace();
    }
}

1为打开抽屉,0为关闭。在按钮点击上放置代码