Electron is a cross-platform framework for building desktop apps with JavaScript, HTML, and CSS.
In agricultural, industrial, and logistics integrated facilities, such desktop apps often need to read information from barcodes and QR codes printed on real-life physical objects.
Such barcodes and QR codes are scanned with a barcode scanner such as Zebra DS4305 Digital Scanner connected to the computer with a USB connector.
Receiving the code into the Electron app turns up to be very simple. The scanner is viewed as a keyboard.
So if you have in the HTML an input
element,
<input id="codeInput"/>
And we focus the program on the input field, using JavaScript,
document.getElementById("codeInput").focus();
The scanner reads the code into the input field like it was typed in by the keyboard.
Top comments (1)
Beautiful. I was worried about this.. but that makes so much sense. thank you for the blog!