CURSOR

Top  Previous  Next

Action

Set the LCD cursor state.

 

 

Syntax

CURSOR ON / OFF   BLINK / NOBLINK

 

 

Remarks

You can use both the ON or OFF and BLINK or NOBLINK parameters.

At power up the cursor state is ON and NOBLINK.

For Graphic LCD displays the state is ON BLINK

 

 

See also

DISPLAY

 

 

Example

Dim a as byte

A = 255

LCD a

Cursor Off                               'hide cursor

Wait 1                                   'wait 1 second

Cursor Blink                             'blink cursor

End