NHD-0420D3Z-NSW-BBW-B3 Initialization

Comments

1 comment

  • Engineering Support
    Community moderator

    Hi Jisu,

    Please refer to our code example (Serial Interface LCD - with Arduino) as a helpful resource for getting started with your display. Additionally you can refer the sample initialization code located on page 13 of the display specification.

    To use the set cursor command, your statement is correct, please refer to the function below:

      void setCursor(uint8_t position){     //Set the display cursor position via DDRAM address
        write(0xFE);
        write(0x45);
        write(position);
      }
     

    That said, for RS232 you will need to set the first set the interface jumper and then set the the pin states on your controller before powering on the display.

     

    Please let us know if you need any further clarification.

    0

Please sign in to leave a comment.