Hi again Ben,

Sounds like you just need a little averaging.

Averaging 16 bit values without using 32 bit math?
http://www.pbpgroup.com/modules/wfse...hp?articleid=7

Then once it's averaged, you can do something like this
Code:
IF Value <> LastValue then
    LastValue = Value
    LCDOUT  $FE,$C0,DEC Value
ENDIF
That will reduce the number of LCD writes significantly.
<br>