TO_BCD_WORD
Function name
TO_BCD_WORD
ST call
PROGRAM TO_BCD_WORD_DEMO VAR W: WORD; U: UDINT; END_VAR W:= TO_BCD_WORD(IN1:=U); END_PROGRAM
Description
The function converts any integer number (ANY_INT) to a binary-coded decimal bit array (WORD). For example, 36 is converted to 2#0011_0110 (54 decimal).
Inputs
Input | Type | Description |
IN1 | ANY_INT | Input value |
Outputs
Output | Type | Description |
⇒ | WORD | Output value |