Hello,
We are using Unitech PA700 , we want to use Barcode. But unitech only provide Java class.
Could anybody help to me to use that in B4A?.
1.1. Enable/Disable scanner
Intent intent = new Intent();
intent.setAction("unitech.scanservice.scan2key_setting");
intent.putExtra("scan2key", true);
sendBroadcast(intent);
1.2. Receive scanned data
String SSI_param_data = "";
Intent sendIntent = new Intent("unitech.scanservice.data");
sendIntent.putExtra("text", SSI_param_data);
sendBroadcast(sendIntent);
1.3. Programming example
Programming Source-code example is available as “keypad-test” at https://portal.unitech.eu/Files/Technical/PA700Scanner(key)Test_1.0.zip
Here we have documentation:
http://www.sico.es/descargas/manualunitech.zip
Many thanks
We are using Unitech PA700 , we want to use Barcode. But unitech only provide Java class.
Could anybody help to me to use that in B4A?.
1.1. Enable/Disable scanner
Intent intent = new Intent();
intent.setAction("unitech.scanservice.scan2key_setting");
intent.putExtra("scan2key", true);
sendBroadcast(intent);
1.2. Receive scanned data
String SSI_param_data = "";
Intent sendIntent = new Intent("unitech.scanservice.data");
sendIntent.putExtra("text", SSI_param_data);
sendBroadcast(sendIntent);
1.3. Programming example
Programming Source-code example is available as “keypad-test” at https://portal.unitech.eu/Files/Technical/PA700Scanner(key)Test_1.0.zip
Here we have documentation:
http://www.sico.es/descargas/manualunitech.zip
Many thanks