16F876A Pulsin issues


Results 1 to 16 of 16

Threaded View

  1. #2
    Join Date
    Jul 2003
    Posts
    2,358


    Did you find this post helpful? Yes | No

    Default

    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
    Last edited by Melanie; - 30th March 2010 at 08:53.

Members who have read this thread : 0

You do not have permission to view the list of names.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts