I would like to display both positive and negative temperatures to one decimal place using setlcd. My code is:
A$ = STR$(A/10) +"."+STR$(ABS(A) MOD 10,1)
This works fine except for temperatures between -0.1 and -0.9 when the display is positive not negative. Any simple ideas?