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
|