I have a PDA 3503 by ZKC and I can't do a wrapper from SDK.
I only need on / off the scanner
Is possible do it?
I could use broadcast option but not other options
I need write this in B4A
I have this link with information about how use the SDK
http://doc.szzkc.com/index.php?s=/3&page_id=30
I only need on / off the scanner
Is possible do it?
I could use broadcast option but not other options
I need write this in B4A
- boolean flg=true;//true or false
- Intent intentBroadcast = new Intent();
- intentBroadcast.setAction("com.zkc.scan");
- intentBroadcast.putExtra("scan_power", flg);
- mContext.sendBroadcast(intentBroadcast);
I have this link with information about how use the SDK
http://doc.szzkc.com/index.php?s=/3&page_id=30