Help Requested: Python Setup 763-NHD-0420CW-AW3

Comments

4 comments

  • Ted M.
    NHD Staff

    Please check pins 17-19 for BS0 to BS2 on the display.  For an 8-bit parallel interface, pin 17 is tied low, pins 18 and 19 are tied high.

    Best Regards,

    0
  • garbage98

    SOLVED
    We tried connecting the Display using the user manual (https://www.mouser.de/datasheet/2/291/NHD-0420CW-AW3-1266321.pdf)

    This is our working setup:

    A few necessary additions in our code:

            self.__b0=16
            self.__b1=20
            self.__b2=21

            #B
            GPIO.setup(self.__b0, GPIO.OUT)
            GPIO.setup(self.__b1, GPIO.OUT)
            GPIO.setup(self.__b2, GPIO.OUT)
            GPIO.output(self.__b0, GPIO.LOW)
            GPIO.output(self.__b1, GPIO.HIGH)
            GPIO.output(self.__b2, GPIO.HIGH)

    thank you!

    0
  • garbage98

    pin 17 is tied low, pins 18 and 19 are tied high.

    What does tie high and tie low mean exactly? How do I need to connect them?
    -> Send GPIO.High/GPIO.LOW by default


    Further questions:
    Should I rather use 2.8V or 5V mode?

    EDIT:
    Thank you i figured it out and managed to display text.

    0
  • Ted M.
    NHD Staff

    Thanks for posting the update.  Nice to see you have it working! 

    Best Regards,

    0

Please sign in to leave a comment.