Quote Originally Posted by karamastik View Post
" Value= XXX " always flickering ; like something is writing over the " Value = XXXX " and it's always flickering.
Code:
Loop1:
    ADCIN  0, ham
    ham=1023-ham
    LCDOUT $FE,2,"Value = ",DEC ham,"   "
    ; syntax- BARgraph   Value, Row, Col, Width, Range, Style
    @         BARgraph  _ham,   2,   0,    16,   1023,  lines
    PAUSE 50
Goto Loop1
That's because something is always overwriting Value = XXXX. VALUE = XXXX is always overwriting VALUE = XXXX.
Try ONLY overwriting just the value not the whole string.