ANY_TO_LINT
The ANY_TO_LINT instruction converts a value to a 64-bit Long Integer value.
Languages supported: Function block diagram, ladder diagram, structured text.
This instruction applies to the Micro810, L20E, L50E, and L70E controllers.
ANY_TO_LINT

Parameter | Parameter Type | Data Type | Description | |
---|---|---|---|---|
EN | Input | BOOL | When set to true, the instruction is enabled.
| |
i1 | Input | BOOL SINT USINT BYTE INT UINT WORD DINT UDINT DWORD | LINT ULINT LWORD REAL LREAL TIME DATE STRING | Any value other than a Long Integer. |
o1 | Output | LINT | A 64-bit Long Integer value. | |
ENO | Output | BOOL | Enables output. Applies to ladder diagram programs. |
ANY_TO_LINT structured text example
bres := ANY_TO_LINT (true); | (* bres is 1 *) |
tres := ANY_TO_LINT (t#0s46ms); | (* tres is 46 *) |
mres := ANY_TO_LINT ('0198'); | (* mres is 198 *) |
Provide Feedback