Hi Actionplus,
It seems like you discovered that PBP cannot handle decimal numbers.
If you want to diplay your data with a decimal you could write ...
LCDOUT "Data = ", DEC data/10, ".", DEC1 data
.... or, if you want a little more control over each digit .....
LCDOUT "Data = ", DEC1 data DIG 4, DEC1 data DIG 3, DEC1 data DIG 2, DEC1 data DIG 1, ".", DEC1 data DIG 0
/Ingvar
Bookmarks