Quote Originally Posted by Mugel
Hi You all!

How can I clear the numbers of my value on the display without flashing the whole thing?

END
Hi,

Just print blank characters ( or new characters) UPON the existing you want to clear ...

see manual page 94, middle ...

LCDOUT $FE, $80 ( or $C0 ) + 6 ( or 7 i.e. ! ) , "___" ( 3 blanks or 888 i.e. )

$FE,$80 + 6 sets the cursor position ... to the 6th position, line 1
$FE,$C0 + 8 ................................... to the 8th position, line 2
...
...

Alain