OOPPS, I was not thinking straight

What we are doing.
Take the number with one decimal place and multiply by 10 before the PIC sees it.
1.5 is now 15
1.6 is now 16
...
Code:
x = 2 * 16
lcdout $FE,1,DEC x / 10,".",DEC x//10
In the above the "x / 10" will return 3.
x//10 will return the remainder 2.

Look in the Pic Basic manual under Math Operators for more fun/confusing stuff