FIX16_TO_WORD
This function converts a 16-bit fixed-point number to a WORD variable (the WORD variable contains the digits and decimal places for the fixed-point number).
Return value
Name | Type | Description |
---|---|---|
FIX16_TO_WORD | WORD |
|
Inputs
VAR_INPUT
in : T_FIX16;
END_VAR
Name | Type | Description |
---|---|---|
in | The fixed-point number to be converted |
Example:
PROGRAM FIX_TO_WORD
VAR
fp16 : WORD;
END_VAR
fp16 := FIX16_TO_WORD(LREAL_TO_FIX16(12.5, 8));
The value of the fp16 variable is: 2#0000110010000000.
Requirements
Development environment | Target platform | PLC libraries to be integrated (category group) |
---|---|---|
TwinCAT v3.1.0 | PC or CX (x86, x64, Arm®) | Tc2_Utilities (System) |