NHD-C0220Biz-FSW adds character 0x11 at begining of line

Comments

3 comments

  • Saurabh_B

    Would it be possible to share the portion of the code where you are sending the characters?

    At many times random characters may appear when there is a timing issue. How fast are you writing to the display, and are you allowing a delay after every command?

    0
  • whAtlGa

    That does seem to be the case.  The configuration went to the module a byte at the time but the text was handled with block writes.  I changed them to this:

    for x in range (0,len(Line1)):
    bus.write_byte_data(LCD,0x40,Line1

    That resolved the issue.

    Thank you for your assistance.

    0
  • Saurabh_B

    Glad to see you have it working properly.

    0

Please sign in to leave a comment.