P is a NUMBER not a displayable ASCII value.
If you want to display the numeric value on the LCD, it needs to be converted. Prefix it with either a hash # in the form
LCDOUT $FE, 1, "Pulse"," ", #P
or with the word DEC in the form
LCDOUT $FE, 1, "Pulse"," ", DEC P
PS, you could of course include the extra SPACE on the end of your word "Pulse " like...
LCDOUT $FE, 1, "Pulse ", DEC P




Bookmarks