Shop OBEX P1 Docs P2 Docs Learn Events
LCD Display trouble — Parallax Forums

LCD Display trouble

edited 2009-12-08 20:11 in BASIC Stamp
I have recently purchased an LCD and I was using the Basic Stamp 2 to display a points value in decimal for a game I am making but it is displaying all the values in ASCII. Here is the programming I have.

·· SEROUT 15, 84, [noparse][[/noparse]254] 'command prefix
···SEROUT 15, 84, [noparse][[/noparse]88] 'clear screen
···SEROUT 15, 84, [noparse][[/noparse]254]
···SEROUT 15, 84, [noparse][[/noparse]Points] 'display value of points

·The points are all variable and add up each time they are triggered, but they are only display in ASCII.
Any help please.

MOSAL162A is the display I purchased




Comments

  • MikerocontrollerMikerocontroller Posts: 310
    edited 2009-12-08 20:11
    Try using the DEC formatter before the variable Points.



    · SEROUT 15, 84, [noparse][[/noparse]DEC Points] 'display value of points
Sign In or Register to comment.