Before anything else thank you for that great Scanner.
Unfortunately, I have a question about resetting the scanner. Is there a way to programmatically reset the scanner so that I can scan the same code again after processing? E.g., the user scans a code, the app finds that it is wrong for the requirements, gives feedback to the user and then resets the scanner so that the user gets feedback again when they scan the same code again.
Reset is available in the latest version.
ZXingVaadinReader zXingVaadin1 = new ZXingVaadinReader();
Button reset = new Button("Reset");
reset.addClickListener(event -> {
zXingVaadin1.reset();//reset reader
});
Cheers.
Thank you for the fast update. It works great.