Quote Originally Posted by HankMcSpank View Post
ADCIN 0, DC_Level_IN ; Read the DC level on RA0 (pin 19)
HSEROUT ["ADCIN Value = ", DEC DC_Level_IN]


The problem with the above method is it's very hard on the eyes, as ithe data progresses across the screen left to right. Ideally I'd like each update to appear on a new line (or even just totally clearing the screen before the data is updated each time)

Many thanks in anticipation.

Hank.
Try:
[code]
HSEROUT [254,1,"ADCIN Value = ", DEC DC_Level_IN]
[code]