Enable MultiScan

MultiScan #

MultiScan is a feature that allows continuous scanning of multiple barcodes without stopping after each scan. This is done by disabling the automatic closing of the scanning session after a result is obtained. The feature also includes an option to set a caching duration for the codes scanned and the ability to enable multicode caching. The duplicates delay and maximum results count can also be adjusted. For best results, it is recommended to have the decoding speed and barkoder resolution set to normal.

                _barkoder.setCloseSessionOnResultEnabled(false);
_barkoder.setMulticodeCachingDuration(3000);
_barkoder.setMulticodeCachingEnabled(true);
_barkoder.setDuplicatesDelayMs(0);
_barkoder.setMaximumResultsCount(200);
            

Page Contents

History:

close