Blinking Double Height Font NHD-0216CW

Comments

1 comment

  • Alee_S

    Hi Matthew,

    Unfortunately, the display is not capable of having one side or portion of the display have a blinking effect, while leaving the other side alone. However, we can manipulate the commands and delays to help simulate this effect.

    I would recommend adding a command in the display function, similar to how you've written, that writes to the DDRAM address as follows:
    0x00:    'Test:       '
    This allows you to have the data text you want displayed at all times.

    Then, you can incorporate two commands in the loop function, also similar to how you've written, that also write to a DDRAM address that is on the right side of the display. For example:
    0x08:   '    '
    0x08:   'ON'
    By writing those two commands to the same memory address in the loop function, you are overwriting that memory location every so often, which can help create the blinking effect, without having to manually re-write to the display each time.

    I would also make sure the delay, for right after the data is latched, is set at most 1 millisecond. Anything over that, and it may not resemble the blinking effect you are looking for.


    Hope this helps!

     

    0

Please sign in to leave a comment.