You are here: Core Reference > Coding > Logic > Binary Value Types

Binary Value Types

There are several types of binary value:

Binary Type Description Bits Range

BOOL

Boolean value

1

0 (False) OR 1 (True)

BYTE

String of 8 bits

8

0 to 255

WORD

String of 16 bits

16

0 to 65536

DWORD

String of 32 bits

32

0 to 232

You need to define the type of the value when you define a binary value in the program.


ClearSCADA 2015 R2