Author Topic: A guide on how to properly read and extract data from a barcode reader.  (Read 501 times)

bachphi

  • Hero Member
  • *****
  • Posts: 690
    • View Profile
Barcode scanners typically store scanned data in a SINT array.
In general, the data length can varies, a direct COPY without knowing its exact length is not feasible.
To transfer the barcode data from the SINT array to a STRING and set its length correctly:

After scanning, the FSC is used to locate the position of the last char in the SINT array.
If .FD is true, the position corresponds to STRING.LEN.
If it's not found & .DN is true [ie. Full string LEN], then Position + 1 determines STRING.LEN.



Next, Extract the content of BarcodeString to SerialNumber, PartNumber, ProductCode, PartCode using a delimiter such as 'Space'.
Noted that FIND can not find a NUL character.

« Last Edit: March 16, 2025, 04:20:25 PM by bachphi »
UCL =================
This is NOT alt.read.my.mind.
No such thing is sh^t-for-brains unless you are posting to alt.read.my.mind.
My understanding of computer is well below six Σ.
Unless what I am saying is logically defined in a PLC, everything else might be beyond my control.
LCL =================

bachphi

  • Hero Member
  • *****
  • Posts: 690
    • View Profile
If you are using a PLC serial connection to communicate with the barcode reader,
First check the buffer for any available characters.
If data is present, read it into the BarcodeString.
Finally, clear the buffer to ensure it's ready for the next scan.

UCL =================
This is NOT alt.read.my.mind.
No such thing is sh^t-for-brains unless you are posting to alt.read.my.mind.
My understanding of computer is well below six Σ.
Unless what I am saying is logically defined in a PLC, everything else might be beyond my control.
LCL =================

bachphi

  • Hero Member
  • *****
  • Posts: 690
    • View Profile
If you're using an ASCII serial-to-Ethernet device like the RTA-435NBX to connect to the barcode reader, refer to this link for setup instructions.

https://www.advancedhmi.com/forum/index.php?topic=2695.0

If your RTA module is set up the Data Type as a SINT array instead of a STRING,
its length is stored in at index [[0] and the actual barcode data begins at index [2].

« Last Edit: March 17, 2025, 10:27:23 AM by bachphi »
UCL =================
This is NOT alt.read.my.mind.
No such thing is sh^t-for-brains unless you are posting to alt.read.my.mind.
My understanding of computer is well below six Σ.
Unless what I am saying is logically defined in a PLC, everything else might be beyond my control.
LCL =================