DEFLCDCHAR

Top  Previous  Next

Action

Define a custom LCD character.

 

 

Syntax

DEFLCDCHAR  char,r1,r2,r3,r4,r5,r6,r7,r8

 

 

Remarks

char

Variable representing the character (0-7).

r1-r8

The row values for the character.

char :  Byte, Integer, Word, Long, Constant.

r1-r8 :  Constant.

 

You can use the LCD designer to build the characters.

 

It is important that after the DEFLCDCHAR statement(s), a CLS follows.

 

The special characters can be printed with the Chr() function.

 

See also

Edit LCD designer , LCD

 

 

Example

DefLCDchar 0,1,2,3,4,5,6,7,8        'define special character

Cls                                        'select LCD DATA RAM

LCD Chr(0)                        'show the character

End