cover

Enable Continuous Scanning

Continuous Scanning #

Continuous Scanning is a feature in barcode scanning applications that allows for repeated scanning of barcodes without manually restarting the scanning process after each successful scan. It is implemented by configuring the scanner to keep the session open and adjusting the delay between duplicate scans.

How to enable it? #



To add continuous scanning you can use this code: 

                barkoderView.config?.closeSessionOnResultEnabled = false
barkoderView.config?.thresholdBetweenDuplicatesScans = 0
            

To avoid sudden detection of the same barcode one would use this (the value is in milliseconds): 

                barkoderView.config?.decoderConfig?.duplicatesDelayMs = 0
            

Page Contents

History:

close