Table of Contents

BCD_TO_USINT

Function name

BCD_TO_USINT

ST call

PROGRAM BCD_TO_USINT_DEMO
  VAR
     W: WORD;
        U: USINT;
   END_VAR
 U:= BCD_TO_USINT(IN1:=W);
END_PROGRAM

Description

Function converts a bit array (ANY_BIT) to an integer type. For example, a binary value of 2#0011_0110_1001 is converted to 369 decimal.

Inputs

InputType Description
IN1 ANY_BITInput value

Outputs

OutputTypeDescription
UINTOutput value

Application example

Conversion of a bit array 2#0001_0002 (decimal 18) to the corresponding integer value of 12.