LCDHEX

Top  Previous  Next

Action

Send variable in hexadecimal format to the LCD display.

 

 

Syntax

LCDHEX var

 

 

Remarks

var

Variable to display.

var1 :  Byte, Integer, Word, Long, Single, Constant.

 

The same rules apply as for PRINTHEX.

 

 

See also

LCD

 

 

Example

Dim a as byte

a = 255

LCD a

Lowerline

LCDHEX a

End