COMPAX POS Cash Drawer Kick
This is a programming manual for using the internal cash drawer port within the COMPAX POS terminal.
Introduction
Details
Calling Interface Sample
public static void enableCashBox(){
try {
Class cls = Class.forName("android.os.SystemProperties");
Method method = cls.getMethod("set",String.class,int.class);
method.invoke(null,"persist.sys.onos.type",4);
} catch (Exception e) {
e.printStackTrace();
}
}Last updated