Hi,
I have a problem with QR Scanner Plugin
The Problem is, when you scan a barcode, you don’t always get the same value
first i thought this is because i’m using too many barcode types, which gave so many errors
but right now i’m only using ean13 barcode type
and i’m reading the same barcode whether from a webpage or from a plain paper
and sometimes it gives a wrong value
This is function i’m using:
local function listener3(event) print(event.message) end local function barImg\_Tap() qrscanner.show{ topbar = { text = 'Barcode Scanner', }, symbols = {'ean13'}, overlays = { searching = { filename = 'images/home/searching.png', baseDir = system.ResourceDirectory }, found = { filename = 'images/home/found.png', baseDir = system.ResourceDirectory } }, listener = listener3 } end barImg\_Tap()
you can test it yourself
just go to https://barcode.tec-it.com/en/EAN13?data=6251158770107
and scan the barcode many times and see for yourself