I want to create a custom app using the Android Zebra SDK for reading the barcode.
I am able to pair the RS5100 with my device TC57, and I exec the <code>getPairingBarcode</code> method with these params:
<code>
sdkHandler.dcssdkGetPairingBarcode(
DCSSDKDefs.DCSSDK_BT_PROTOCOL.SSI_BT_LE,
DCSSDKDefs.DCSSDK_BT_SCANNER_CONFIG.KEEP_CURRENT,
)
</code>
but after the pairing, I am not able to read the barcodes scanner. I click the yellow button on the ring but the red light did not turn on.
The red light turns on only if I launch the operation code:
<code>DCSSDKDefs.DCSSDK_COMMAND_OPCODE.DCSSDK_DEVICE_PULL_TRIGGER</code>
But I want it to always be possible to read barcodes on click.
Even when using the <strong>Scanner Control</strong> app that is already installed on the device after the pairing, if click on the yellow button on the ring, the scanner doesn't work, and it's impossible to read any barcode. The red light turns on only if click <strong>Pull</strong> button on <strong>Settings</strong>.
What other parameters need to be set to make sure that it is always possible to read the barcodes at the click of the ring?
Thanks in advance.
2 Replies
Suggest to disable Host trigger parameter mode attribute #790
Check article below ( same info is in the manual of RS5100)
https://supportcommunity.zebra.com/s/article/RS5100-Host-Trigger-Event-…
ok thanks for the info.