Conversion instructions
149
Part II IEC Instructions
DINT_TO_INT
DOUBLE INTEGER into INTEGER
To add an enable input and enable output to the instruction, select [With EN/ENO] from the
"Instructions" pane (LD, FBD or IL editor). To reuse an instruction select "Recently used" from the
context menu or press <Ctrl>+<Shift>+<v> in the programming window.
PLC types
Availability of DINT_TO_INT (see page 1319)
The value of the input variable should be between -32768 and 32767.
Data type I/O Function
DINT input input data type
INT output conversion result
Description
DINT_TO_INT converts a value of the data type DINT into a value of the data type INT.
Data types
Example
In this example, the same POU header is used for all programming languages. For an example
using IL (instruction list), please refer to the online help.
POU header
All input and output variables used for programming this function have been declared in the POU
header.
This example uses variables. You can also use a constant for the input variable.
Body
DINT_value of the data type DOUBLE INTEGER (32-bit) is converted into a value of the data type
INTEGER (16-bit). The converted value is written into INT_value.
LD
ST
When programming with structured text, enter the following:
INT_value:=DINT_TO_INT(DINT_value);