WWW.NNC.IR
Macro Reference
561
8
Appendices
Vision System FH/FZ5 Series
User’s Manual (Z340)
Example
Gets the read letter "A" with the OCR processing unit (Processing Unit number 5) using the unit calculation
macro processing unit and converts the letter into a hexadecimal value. The read character string can be
gotten with External Reference Data number 20
The result is shown below.
Useable Modules
Unit Calculation Macro / Scene Control Macro / Communication Command Macro / Unit Macro
Supported Versions
Version 3.50 or later
Related Items
Rem Get the measurement result of the processing unit.
GetUnitData 5, 20, CHARA1$
Rem Convert the character to the character code.
CODE& = Asc(CHARA1$)
Rem Convert the character code to the hexadecimal value in character string format.
CHARA2$ = Hex$(CODE&)
CHARA1$ = "A"
CODE& = 65
CHARA2$ = 41
Asc (Reference: X Details (p.413)) Chr$ (Reference: X Details (p.427))
GetUnitData (Reference: X Details (p.552)) LCase$ (Reference: X Details (p.589))
Left$ (Reference: X Details (p.591)) Len (Reference: X Details (p.593))
Mid$ (Reference: X Details (p.621)) Piece$ (Reference: X Details (p.637))
Right$ (Reference: X Details (p.664)) Str$ (Reference: X Details (p.749))
Str2$ (Reference: X Details (p.751)) UCase$ (Reference: X Details (p.775))
Val (Reference: X Details (p.794))